25 lines
554 B
C#
25 lines
554 B
C#
using BreakpointTransmission.Service.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
namespace PackUploadRelease
|
|
{
|
|
public class TextLogger : ILog
|
|
{
|
|
public void Dispose()
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
|
|
public void Log(string mes)
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
|
|
public void Log(string format, params object[] args)
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |