sajato / logw

A simple wrapper for logging. It provides static log methods and make log guards unnecessary.
Apache License 2.0
4 stars 1 forks source link

fix broken test #20

Closed atomfrede closed 3 years ago

atomfrede commented 8 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

warn(String messagePattern, Object... arguments)

or

warn(String loggerName, String messagePattern, Object... arguments)

with no arguments.

sajato commented 3 years ago

Remove methods that cause the method signature clash.