Skip to content

Commit

Permalink
Make dummy HiveEventClient use DEBUG log instead of INFO
Browse files Browse the repository at this point in the history
This reduces logging output during tests.
  • Loading branch information
sopel39 committed Jan 29, 2019
1 parent a1c4802 commit eb7f677
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public <T> void postEvent(T event)
return;
}
WriteCompletedEvent writeCompletedEvent = (WriteCompletedEvent) event;
log.info("File created: query: %s, schema: %s, table: %s, partition: '%s', format: %s, size: %s, path: %s",
log.debug("File created: query: %s, schema: %s, table: %s, partition: '%s', format: %s, size: %s, path: %s",
writeCompletedEvent.getQueryId(),
writeCompletedEvent.getSchemaName(),
writeCompletedEvent.getTableName(),
Expand Down

0 comments on commit eb7f677

Please sign in to comment.