Files
Umbraco-CMS/src/Umbraco.Core/Logging/ILoggingConfiguration.cs

12 lines
228 B
C#
Raw Normal View History

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