mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-13 20:46:37 +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");
|
|
}
|
|
}
|
|
}
|