Skip to content

Commit

Permalink
Use a finer log level for environment variables log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
natthu authored and denji committed Jul 13, 2015
1 parent 22d2c1f commit 5c33d6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void run() {
String key = line.substring(0, equalsIndex);
String value = line.substring(equalsIndex + 1);
remoteEnv.setProperty(key, value);
LOGGER.fine("Setting env: key('" + key + "')=value('" + value + "').");
LOGGER.finest("Setting env: key('" + key + "')=value('" + value + "').");
}
break;

Expand Down

0 comments on commit 5c33d6e

Please sign in to comment.