Skip to content

Commit

Permalink
GEODE-2172 CustomConfigWithCacheIntegrationTest fails on Windows
Browse files Browse the repository at this point in the history
This closes apache#348
  • Loading branch information
vectorijk authored and metatype committed Feb 3, 2017
1 parent 7b5e2cc commit add48b1
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,7 @@ public static String defineLogStatementRegex(final Level level, final String mes
// CUSTOM: level=%level time=%date{yyyy/MM/dd HH:mm:ss.SSS z}
// message=%message%nthrowable=%throwable%n
return CONFIG_LAYOUT_PREFIX + ": level=" + level.toString() + " time=" + ".*" + " message="
+ message + "\nthrowable=\n";
}

public static String defineLogStatementRegex(final Level level, final String message,
final String throwable) {
// CUSTOM: level=%level time=%date{yyyy/MM/dd HH:mm:ss.SSS z}
// message=%message%nthrowable=%throwable%n
return CONFIG_LAYOUT_PREFIX + ": level=" + level.toString() + " time=" + ".*" + " message="
+ message + "\nthrowable=" + throwable + "\n";
+ message + System.lineSeparator() + "throwable=" + System.lineSeparator();
}

}

0 comments on commit add48b1

Please sign in to comment.