mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 03:52:06 +01:00
SINT: fix typo in output when using deprecated 'debug' option
This commit is contained in:
parent
f4110ec388
commit
449ea73239
1 changed files with 1 additions and 1 deletions
|
@ -517,7 +517,7 @@ public final class Configuration {
|
|||
|
||||
String debugString = properties.getProperty("debug");
|
||||
if (debugString != null) {
|
||||
LOGGER.warning("Usage of depreacted 'debug' option detected, please use 'debugger' instead");
|
||||
LOGGER.warning("Usage of deprecated 'debug' option detected, please use 'debugger' instead");
|
||||
builder.setDebugger(debugString);
|
||||
}
|
||||
builder.setDebugger(properties.getProperty("debugger"));
|
||||
|
|
Loading…
Reference in a new issue