MTSC
1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
ILogger.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
MTSC.Logging
6
{
10
public
interface
ILogger
11
{
17
bool
Log
(
string
message);
23
bool
LogDebug
(
string
message);
24
}
25
}
MTSC.Logging.ILogger.Log
bool Log(string message)
Logs the received message.
MTSC.Logging.ILogger
Interface for loggers.
Definition:
ILogger.cs:10
MTSC.Logging.ILogger.LogDebug
bool LogDebug(string message)
Logs the received debug message.
MTSC.Logging
Definition:
ConsoleLogger.cs:5
MTSC
MTSC
Logging
ILogger.cs
Generated by
1.8.15