changeset 281:7a42da852b77 Eluru-6.0.x

Do not log command twice
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Mon, 29 Aug 2011 11:34:17 +0400
parents 20817ebd1a05
children 7e580e03471c
files mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommand.java
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommand.java	Tue Apr 19 18:40:40 2011 +0400
+++ b/mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommand.java	Mon Aug 29 11:34:17 2011 +0400
@@ -91,12 +91,10 @@
   }
 
   protected ExecResult runCommand(@NotNull GeneralCommandLine cli) throws VcsException {
-    LOG.debug("Run command: " + cli.getCommandLineString());
     return CommandUtil.runCommand(cli, getPrivateData());
   }
 
   protected ExecResult runCommand(@NotNull GeneralCommandLine cli, int executionTimeout) throws VcsException {
-    LOG.debug("Run command: " + cli.getCommandLineString());
     return CommandUtil.runCommand(cli, executionTimeout, getPrivateData());
   }