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 }
bool Log(string message)
Logs the received message.
Interface for loggers.
Definition: ILogger.cs:10
bool LogDebug(string message)
Logs the received debug message.