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