mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 22:32:06 +01:00
Fix log message in SmackConfiguration
Those startup classes could be specified in other files besides smack-config.xml
This commit is contained in:
parent
8321948b3c
commit
a1227b78cc
1 changed files with 1 additions and 2 deletions
|
@ -335,8 +335,7 @@ public final class SmackConfiguration {
|
||||||
else {
|
else {
|
||||||
logLevel = Level.WARNING;
|
logLevel = Level.WARNING;
|
||||||
}
|
}
|
||||||
LOGGER.log(logLevel, "A startup class '" + className
|
LOGGER.log(logLevel, "A startup class '" + className + "' could not be loaded.");
|
||||||
+ "' specified in smack-config.xml could not be loaded.");
|
|
||||||
if (!optional) {
|
if (!optional) {
|
||||||
throw cnfe;
|
throw cnfe;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue