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