12 lines
230 B
C#
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; }
|
|
}
|
|
}
|