21 lines
535 B
C#
21 lines
535 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|