WebAppender.webConsole constructor

WebAppender.webConsole(
  1. Formatter formatter
)

Constructor that creates appender which formats the messages using the Formatter and outputs to Window.console

Implementation

factory WebAppender.webConsole(Formatter formatter) =>
    WebAppender(formatter, window.console);