Add ILogger implementations
This commit is contained in:
14
Hcs.Client/Client/Logger/ActionLogger.cs
Normal file
14
Hcs.Client/Client/Logger/ActionLogger.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Hcs.Client.Logger
|
||||
{
|
||||
public class ActionLogger : ILogger
|
||||
{
|
||||
public Action<string> OnWriteLine;
|
||||
|
||||
public void WriteLine(string message)
|
||||
{
|
||||
OnWriteLine?.Invoke(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user