2
0
mirror of synced 2025-01-15 02:54:41 +00:00

32 lines
654 B
C#
Raw Normal View History

2023-06-26 15:37:16 +02:00
namespace Logging
2023-06-22 10:17:12 +02:00
{
2023-09-20 10:51:47 +02:00
public class NullLog : BaseLog
2023-06-22 10:17:12 +02:00
{
2023-09-01 09:28:04 +02:00
public string FullFilename { get; set; } = "NULL";
2023-06-28 15:11:20 +02:00
protected override string GetFullName()
2023-06-22 10:17:12 +02:00
{
2023-09-01 09:28:04 +02:00
return FullFilename;
2023-06-22 10:17:12 +02:00
}
public override void Log(string message)
{
if (IsDebug) base.Log(message);
2023-06-22 10:17:12 +02:00
}
public override void Error(string message)
{
2023-11-13 15:11:49 +01:00
Console.WriteLine("Error: " + message);
base.Error(message);
2023-06-22 10:17:12 +02:00
}
public override void AddStringReplace(string from, string to)
{
}
public override void Delete()
{
}
}
}