sharee.bike-App/SharedBusinessLogic/Model/Logging/EmptyDirectoryLoggingManger.cs

21 lines
657 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.Collections.Generic;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.Logging
2021-05-13 20:03:07 +02:00
{
2022-09-06 16:08:19 +02:00
public class EmptyDirectoryLoggingManger : ILoggingDirectoryManager
{
public void DeleteObsoleteLogs() { }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets the log file name. </summary>
public string LogFileName { get { return string.Empty; } }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets all log files in logging directory. </summary>
/// <returns>List of log files.</returns>
public IList<string> GetLogFiles() { return new List<string>(); }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets path where log files are located. </summary>
/// <returns>Path to log files.</returns>
public string LogFilePath { get { return string.Empty; } }
}
2021-05-13 20:03:07 +02:00
}