fixed issue where series controller was still going to db for every file.

Increased log level
tweaked connection string to sqlite
This commit is contained in:
kay.one 2011-06-21 22:43:45 -07:00
commit cbfbb87926
3 changed files with 12 additions and 12 deletions

View file

@ -31,7 +31,7 @@ namespace NzbDrone.Core.Instrumentation
#endif
var sonicTarget = CentralDispatch.NinjectKernel.Get<SubsonicTarget>();
LogManager.Configuration.AddTarget("DbLogger", sonicTarget);
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Info, sonicTarget));
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, sonicTarget));
LogManager.Configuration.Reload();
}