1
0
mirror of synced 2024-07-02 16:47:39 +00:00
Tapeti/Default/ConsoleLogger.cs

21 lines
535 B
C#
Raw Normal View History

namespace Tapeti.Default
{
public class ConsoleLogger : ILogger
{
public void Connect(TapetiConnectionParams connectionParams)
{
throw new System.NotImplementedException();
}
public void ConnectFailed(TapetiConnectionParams connectionParams)
{
throw new System.NotImplementedException();
}
public void ConnectSuccess(TapetiConnectionParams connectionParams)
{
throw new System.NotImplementedException();
}
}
}