The effective writer of log messages. The default Writer implementation is the console.

interface Writer {
    debug: WriterMethod;
    error: WriterMethod;
    info: WriterMethod;
    warn: WriterMethod;
}

Properties

Properties

Write a debug message.

Write a error message.

Write a info message.

Write a warn message.