given a logger that has these function signatures ...
# announcements
v
given a logger that has these function signatures
Copy code
void log(Level level, Object message); // 1
   ...
    void log(Level level, Supplier<?> msgSupplier); // 2
and my code as such
Copy code
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?