vach
03/15/2017, 7:38 AMvoid log(Level level, Object message); // 1
...
void log(Level level, Supplier<?> msgSupplier); // 2
and my code as such
logger.log(level, Supplier { this.toString() })
i will end up using signature 1 instead of 2
how do i specify that i want the second signature?