added logging for git checkout

This commit is contained in:
spencergibb
2022-05-26 13:17:44 -04:00
parent 6c2de37f1f
commit d0a34b8d03

View File

@@ -268,6 +268,7 @@ public class ProjectGitHandler implements Closeable {
}
public void checkout(File project, String branch) {
log.info("checkout project: " + project + " with branch: " + branch);
gitRepo(project).checkout(branch);
}