1
0
mirror of synced 2024-07-04 17:30:36 +00:00
Tapeti/Test/MyLogger.cs

31 lines
698 B
C#
Raw Normal View History

2018-06-11 07:51:15 +00:00
using System;
using Tapeti;
// ReSharper disable UnusedMember.Global
2018-06-11 07:51:15 +00:00
namespace Test
{
public class MyLogger : ILogger
{
public void Connect(TapetiConnectionParams connectionParams)
{
throw new NotImplementedException();
}
public void ConnectFailed(TapetiConnectionParams connectionParams)
{
throw new NotImplementedException();
}
public void ConnectSuccess(TapetiConnectionParams connectionParams)
{
throw new NotImplementedException();
}
public void HandlerException(Exception e)
{
Console.WriteLine("Mylogger: " + e.Message);
}
}
}