Skip to content

Commit

Permalink
[cli] Print a log message before starting to clone a git repo (#451)
Browse files Browse the repository at this point in the history
Co-authored-by: Nicolò Boschi <boschi1997@gmail.com>
  • Loading branch information
eolivelli and nicoloboschi authored Sep 20, 2023
1 parent 6701aae commit 6a9b401
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ 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 locally", uri));

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

0 comments on commit 6a9b401

Please sign in to comment.