mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
17 lines
335 B
C#
17 lines
335 B
C#
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace CryptoExchange.Net.Logging
|
|
{
|
|
public class DebugTextWriter: TextWriter
|
|
{
|
|
public override Encoding Encoding => Encoding.ASCII;
|
|
|
|
public override void WriteLine(string value)
|
|
{
|
|
Debug.WriteLine(value);
|
|
}
|
|
}
|
|
}
|