Skip to content

Commit

Permalink
[LOGMGR-155] Fixed NPE in the StructuredFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
jamezp committed Oct 2, 2017
1 parent 5735714 commit 90bf84f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public final synchronized String format(final ExtLogRecord record) {
.add(getKey(Key.SOURCE_LINE_NUMBER), record.getSourceLineNumber());
}

if (!isNotNullOrEmpty(metaData)) {
if (isNotNullOrEmpty(metaData)) {
generator.addMetaData(metaDataMap);
}

Expand Down

0 comments on commit 90bf84f

Please sign in to comment.