 | 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);
Namespace: Slash.Diagnostics.LoggingAssembly: Slash.Diagnostics (in Slash.Diagnostics.dll) Version: 1.0.6018.40181
Syntaxpublic Logger(
Type type
)
Public Sub New (
type As Type
)
public:
Logger(
Type^ type
)
new :
type : Type -> Logger
Parameters
- type
- Type: SystemType
the type that is using this logger
See Also