Skip to content

Commit

Permalink
[cli] Print a log message before starting to clone a git repo
Browse files Browse the repository at this point in the history
  • Loading branch information
eolivelli committed Sep 20, 2023
1 parent e654304 commit c19bd92
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public static File downloadGithubRepository(URI uri, Consumer<String> logger) {
RequestedDirectory requestedDirectory = parseRequest(uri);

final Path directory = Files.createTempDirectory("langstream");
logger.accept(
String.format("Cloning GitHub repository %s to ", uri, directory.toAbsolutePath()));

final long start = System.currentTimeMillis();
Git.cloneRepository()
Expand Down

0 comments on commit c19bd92

Please sign in to comment.