Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

Commit

Permalink
Don't print the ENV as it gives huge logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
buckett authored and magnayn committed Apr 20, 2010
1 parent 7debb65 commit 7d46244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/git/GitAPI.java
Expand Up @@ -50,7 +50,7 @@ public GitAPI(String gitExe, FilePath workspace,
PrintStream log = listener.getLogger();
log.println("GitAPI created");
for (Map.Entry<String, String> ent : environment.entrySet()) {
log.println("Env: " + ent.getKey() + "=" + ent.getValue());
//log.println("Env: " + ent.getKey() + "=" + ent.getValue());
}

launcher = new LocalLauncher(listener);
Expand Down

0 comments on commit 7d46244

Please sign in to comment.