Click or drag to resize
Logger Constructor
A logger to be used for logging statements in the code. It is recommended to follow a pattern for instantiating this:
private static readonly JCsLogger log = new JCsLogger(typeof(YourClassName));
                ...
                log.*(yourLoggingStuff); // Debug/Info/Warn/Error/Fatal[Format]

Namespace: Slash.Diagnostics.Logging
Assembly: Slash.Diagnostics (in Slash.Diagnostics.dll) Version: 1.0.6018.40181
Syntax
public Logger(
	Type type
)

Parameters

type
Type: SystemType
the type that is using this logger
See Also