Files
Umbraco-CMS/src/Umbraco.Core/Logging/ILoggingConfiguration.cs
2020-12-08 11:08:14 +11:00

12 lines
230 B
C#

namespace Umbraco.Core.Logging
{
public interface ILoggingConfiguration
{
/// <summary>
/// Gets the physical path where logs are stored
/// </summary>
string LogDirectory { get; }
}
}