Closed atomfrede closed 3 years ago
I've fixed the broken build. There seems to be a method signature clash. When calling
Logw.warn("Hello {}", "World"); this can be
Logw.warn("Hello {}", "World");
warn(String messagePattern, Object... arguments)
or
warn(String loggerName, String messagePattern, Object... arguments)
with no arguments.
Remove methods that cause the method signature clash.
I've fixed the broken build. There seems to be a method signature clash. When calling
Logw.warn("Hello {}", "World");
this can beor
with no arguments.