fix(logger): this doesn't need to be private
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2024-03-14 14:15:39 +01:00
parent af6252522d
commit 6195cfbc83
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public interface CompactLogger extends SystemLoggerPlus {
}
}
private static String getResourceStringOrMessage(ResourceBundle bundle, String msg) {
static String getResourceStringOrMessage(ResourceBundle bundle, String msg) {
// This method was taken from SLF4J and modified slightly
if (bundle == null || msg == null) return msg;
try {