mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-04 22:43:07 +00:00
18 lines
321 B
C#
18 lines
321 B
C#
namespace Logging
|
|
{
|
|
public class FileLog : BaseLog
|
|
{
|
|
public FileLog(string fullFilename)
|
|
{
|
|
FullFilename = fullFilename;
|
|
}
|
|
|
|
public string FullFilename { get; }
|
|
|
|
public override string GetFullName()
|
|
{
|
|
return FullFilename;
|
|
}
|
|
}
|
|
}
|