Skip to content

Commit 9508ee5

Browse files
committed
one line logging
1 parent def56fe commit 9508ee5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/cryptomator/integrations/common/NamedServiceProvider.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ default String getName() {
2727
} catch (MissingResourceException e) {
2828
var clazz = this.getClass();
2929
var logger = LoggerFactory.getLogger(clazz);
30-
logger.warn("Failed to load localized display name for {}. Falling back to not-localized display name/class name.", clazz.getName());
31-
logger.debug("Reason for failure of {}.", clazz.getName(), e);
30+
logger.warn("Failed to load localized display name for {}. Falling back to not-localized display name/class name.", clazz.getName(), e);
3231
}
3332
}
3433

0 commit comments

Comments
 (0)