mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
more logging.
This commit is contained in:
parent
af4063c3e2
commit
2573558321
@ -20,7 +20,7 @@ namespace NzbDrone.Core.Instrumentation
|
|||||||
{
|
{
|
||||||
Layout = new SimpleLayout("${callsite:className=false:fileName=false:includeSourcePath=false:methodName=true}");
|
Layout = new SimpleLayout("${callsite:className=false:fileName=false:includeSourcePath=false:methodName=true}");
|
||||||
|
|
||||||
Rule = new LoggingRule("*", LogLevel.Debug, this);
|
Rule = new LoggingRule("*", LogLevel.Trace, this);
|
||||||
|
|
||||||
LogManager.Configuration.AddTarget("DbLogger", this);
|
LogManager.Configuration.AddTarget("DbLogger", this);
|
||||||
LogManager.Configuration.LoggingRules.Add(Rule);
|
LogManager.Configuration.LoggingRules.Add(Rule);
|
||||||
|
@ -26,6 +26,6 @@
|
|||||||
<rules>
|
<rules>
|
||||||
<logger name="*" minlevel="Trace" writeTo="consoleLogger"/>
|
<logger name="*" minlevel="Trace" writeTo="consoleLogger"/>
|
||||||
<logger name="*" minlevel="Off" writeTo="udpTarget"/>
|
<logger name="*" minlevel="Off" writeTo="udpTarget"/>
|
||||||
<logger name="*" minlevel="Debug" writeTo="rollingFileLogger"/>
|
<logger name="*" minlevel="Trace" writeTo="rollingFileLogger"/>
|
||||||
</rules>
|
</rules>
|
||||||
</nlog>
|
</nlog>
|
@ -31,6 +31,8 @@ namespace NzbDrone.Owin
|
|||||||
App = GetType().AssemblyQualifiedName
|
App = GetType().AssemblyQualifiedName
|
||||||
};
|
};
|
||||||
|
|
||||||
|
_logger.Info("starting server on {0}", options.Url);
|
||||||
|
|
||||||
_host = WebApplication.Start(options, BuildApp);
|
_host = WebApplication.Start(options, BuildApp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user