mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
20 lines
715 B
C#
20 lines
715 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TINK.Model.Logging
|
|
{
|
|
public class EmptyDirectoryLoggingManger : ILoggingDirectoryManager
|
|
{
|
|
public void DeleteObsoleteLogs() { }
|
|
|
|
/// <summary> Gets the log file name. </summary>
|
|
public string LogFileName { get { return string.Empty; } }
|
|
|
|
/// <summary> Gets all log files in logging directory. </summary>
|
|
/// <returns>List of log files.</returns>
|
|
public IList<string> GetLogFiles() { return new List<string>(); }
|
|
|
|
/// <summary> Gets path where log files are located. </summary>
|
|
/// <returns>Path to log files.</returns>
|
|
public string LogFilePath { get { return string.Empty; } }
|
|
}
|
|
}
|