forked from ddrilling/AsbCloudServer
32 lines
656 B
C#
32 lines
656 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudWebApi
|
|||
|
{
|
|||
|
public class TraceListenerView : TraceListener
|
|||
|
{
|
|||
|
public TraceListenerView()
|
|||
|
{
|
|||
|
Trace.Listeners.Add(this);
|
|||
|
}
|
|||
|
|
|||
|
public override void Write(object o)
|
|||
|
{
|
|||
|
base.Write(o);
|
|||
|
}
|
|||
|
|
|||
|
public override void Write(string message)
|
|||
|
{
|
|||
|
//throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public override void WriteLine(string message)
|
|||
|
{
|
|||
|
//throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|