1
0
mirror of synced 2024-07-02 16:47:39 +00:00
Tapeti/Test/MyLogger.cs
2018-06-11 09:51:15 +02:00

33 lines
758 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tapeti;
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);
}
}
}