12 lines
228 B
C#
12 lines
228 B
C#
|
|
namespace Umbraco.Core.Logging
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public interface ILoggingConfiguration
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The physical path where logs are stored
|
|||
|
|
/// </summary>
|
|||
|
|
string LogDirectory { get; }
|
|||
|
|
}
|
|||
|
|
}
|