Skip to content

Commit

Permalink
Fixing the log related bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav Gupta committed Sep 19, 2013
1 parent c667418 commit 3939409
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ private void produceCount(List<URI> brokerURI, ArrayList<Message> monitorSet) {
break;
} catch (Exception e) {
e.printStackTrace();
log.err(topic + " issue sending tracking to " + uri);
log.error(topic + " issue sending tracking to " + uri);
continue;
} finally {
if (basicProducer != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void initialize(InputSplit split, TaskAttemptContext context) throws IOEx

this.totalBytes = this.split.getLength();

System.out.log.info("Finished executing the initialize part");
log.info("Finished executing the initialize part");
}

@Override
Expand Down

0 comments on commit 3939409

Please sign in to comment.