2025-03-28 09:49:56 +08:00

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();
}
}
}