1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-18 12:15:58 +02:00

SINT: fix typo in output when using deprecated 'debug' option

This commit is contained in:
Guus der Kinderen 2024-03-14 13:14:52 +01:00
parent f4110ec388
commit 449ea73239

View file

@ -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"));