18 lines
324 B
C#
18 lines
324 B
C#
|
namespace Logging
|
|||
|
{
|
|||
|
public class FileLog : BaseLog
|
|||
|
{
|
|||
|
public FileLog(string fullFilename)
|
|||
|
{
|
|||
|
FullFilename = fullFilename;
|
|||
|
}
|
|||
|
|
|||
|
public string FullFilename { get; }
|
|||
|
|
|||
|
protected override string GetFullName()
|
|||
|
{
|
|||
|
return FullFilename;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|