ILogAppender Interface

Summary

Receives log messages forwarded by the ILog implementation, allowing custom sinks (e.g. file, build-agent output).
Namespace
GitVersion.Logging
graph BT Type["ILogAppender"] class Type type-node

Syntax

public interface ILogAppender

Methods

Name Value Summary
WriteTo(LogLevel, string) void
Writes message at the given level to this appender's destination.

Extension Methods

Name Value Summary
NotNull<ILogAppender>(string) T
Throws ArgumentNullException when value is null; otherwise returns the value.
GitHub