Commit 8dea74a2 authored by Johnny Lim's avatar Johnny Lim Committed by Andy Wilkinson

Add a missing quote in DebugLogbackConfigurator

See gh-17357
parent f4e7b806
...@@ -40,7 +40,7 @@ class DebugLogbackConfigurator extends LogbackConfigurator { ...@@ -40,7 +40,7 @@ class DebugLogbackConfigurator extends LogbackConfigurator {
@Override @Override
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public void conversionRule(String conversionWord, Class<? extends Converter> converterClass) { public void conversionRule(String conversionWord, Class<? extends Converter> converterClass) {
info("Adding conversion rule of type '" + converterClass.getName() + "' for word '" + conversionWord); info("Adding conversion rule of type '" + converterClass.getName() + "' for word '" + conversionWord + "'");
super.conversionRule(conversionWord, converterClass); super.conversionRule(conversionWord, converterClass);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment