<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>Hi for all</p>
    <p>What do you think about new methods in Logger interface for
      kotlin/scala developers?</p>
    <p>We want to use<br>
              logger.trace { "Message with $parameter" }<br>
      instead of<br>
              logger.trace("Message with {}", parameter)<br>
      <br>
      It will be allowed when methods like <br>
    </p>
    <pre style="background-color:#ffffff;color:#080808;font-family:'Menlo',monospace;font-size:10.5pt;"><span style="color:#0033b3;">   default void </span><span style="color:#00627a;">trace</span>(<span style="color:#000000;">Supplier</span><<span style="color:#000000;">String</span>> msgSupplier) {
            <span style="color:#0033b3;">if </span>(isTraceEnabled()) {
                trace(msgSupplier.get());
            }
        }

</pre>
    <p>
      will be added info <span style="color:#000000;"> org.slf4j.Logger</span>
      interface.</p>
    <p>I've done the first part of this in
      <a class="moz-txt-link-freetext" href="https://github.com/qos-ch/slf4j/pull/253">https://github.com/qos-ch/slf4j/pull/253</a> and I will to done all of
      this if someone want to review.<br>
    </p>
    <p><br>
    </p>
    <pre style="background-color:#ffffff;color:#080808;font-family:'Menlo',monospace;font-size:10.5pt;">
</pre>
  </body>
</html>