Skip to content

Commit

Permalink
Update log level for Cli Process errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Anu Sudarsan committed Jul 19, 2016
1 parent 620697c commit c23b7b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ public List<String> readRemainingErrorLines()
public String nextErrorLine()
{
String nextLine = processError.nextLine();
LOGGER.info("processError: {}", nextLine);
LOGGER.debug("processError: {}", nextLine);
return nextLine;
}

@Override
public String nextErrorToken()
{
String next = processError.next();
LOGGER.info("processError: {}", next);
LOGGER.debug("processError: {}", next);
return next;
}

Expand Down

0 comments on commit c23b7b0

Please sign in to comment.