2018-06-11 07:51:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Tapeti;
|
|
|
|
|
|
2018-12-19 19:50:56 +00:00
|
|
|
|
// 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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|