Skip to content

Commit

Permalink
Reduce log line length
Browse files Browse the repository at this point in the history
  • Loading branch information
grantatspothero committed May 27, 2020
1 parent cac704a commit 9acbff0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ current, new Path(metadata.getPath()), conf.originals()
if(fileSizeBytesObject != null) {
Long byteOffset = (Long)fileSizeBytesObject;
if (metadata.getLen() == byteOffset){
log.info("File {} has byte length and byte offset of: {}, skipping reading the file as it is unchanged since the last execution", metadata.getPath(), byteOffset);
log.info("Skipping file: file {} has byte length and byte offset of: {}", metadata.getPath(), byteOffset);
return null;
}
}
Expand Down

0 comments on commit 9acbff0

Please sign in to comment.