mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-10 01:13:07 +00:00
20 lines
373 B
C#
20 lines
373 B
C#
|
|
namespace Logging
|
|||
|
|
{
|
|||
|
|
public abstract class BaseTestLog : BaseLog
|
|||
|
|
{
|
|||
|
|
private bool hasFailed;
|
|||
|
|
|
|||
|
|
public BaseTestLog(bool debug)
|
|||
|
|
: base(debug)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void MarkAsFailed()
|
|||
|
|
{
|
|||
|
|
if (hasFailed) return;
|
|||
|
|
hasFailed = true;
|
|||
|
|
LogFile.ConcatToFilename("_FAILED");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|