Console log

Location: console module.

var consoleLog = new ConsoleLog();
var configuredConsoleLog = new ConsoleLog(new ConsoleLogSettings());

Features

  • Customizable output templates.

  • Customizable per-level message colors.

  • Log method is nonblocking: log events are placed into an internal queue, grouped into batches and efficiently written to console output stream in the background.

Configuration

Here's what ConsoleLogSettings have to offer:

All configuration parameters are optional.

Global configuration

There's also static global configuration that affects all ConsoleLog instances in the application. It is accessed as follows:

ConsoleLog.UpdateGlobalSettings(new ConsoleLogGlobalSettings());

This configuration exposes following parameters worth mentioning:

Note that changes in these global configuration parameters only take effect if performed before any actual logging.

Usage tips

  • Keep in mind that log messages are rendered in the background. Use Flush or FlushAsync methods of ConsoleLog to ensure that all logged events have been written to console when the application shuts down.

  • Internal queue with limited capacity implies that log messages may be lost in the event of overflow (see guarantees section for more on this topic). Use EventsLost property of a single ConsoleLog instance or static TotalEventsLost property to check if any events have been discarded.

  • If any log events are lost due to internal queue overflow, ConsoleLog emits a special diagnostic message that looks like this:

    • [ConsoleLog] Buffer overflow. 100 log events were lost (events queue capacity = 50000).

Synchronous version

There are certain scenarios where it's not feasible to use an asynchronous log, such as logging in unit tests or simple console utilities. These use cases are better served by an alternative synchronous implementation that writes to console immediately in Log method:

var synchronousLog = new SynchronousConsoleLog();

It's performance is vastly inferior to that of ConsoleLog due to lack of buffering, but it removes the need to flush and works well in test environments where Console.Out cannot be safely cached.

Last updated