2020-12-08 11:08:14 +11:00
|
|
|
namespace Umbraco.Core.Logging
|
2020-04-22 14:23:56 +10:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public interface ILoggingConfiguration
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-12-08 11:08:14 +11:00
|
|
|
/// Gets the physical path where logs are stored
|
2020-04-22 14:23:56 +10:00
|
|
|
/// </summary>
|
|
|
|
|
string LogDirectory { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|