Fix example syntax

This commit is contained in:
Clément Fournier authored and GitHub committed 2021-03-10 15:21:13 +01:00
1 parent 18d1612b6b
commit b45ab7698c
1 file changed
+1 -1
@@ -604,7 +604,7 @@ with lambdas. The available alternatives depend on the actual logging framework.
<example>
<![CDATA[
// Add this for performance
if (log.isDebugEnabled() {
if (log.isDebugEnabled()) {
log.debug("log something" + " and " + "concat strings");
}