update logging levels

This commit is contained in:
Luke Pulverenti
2015-10-04 18:04:56 -04:00
parent 9124825c98
commit 4ad96e4ff5
13 changed files with 48 additions and 29 deletions

View File

@@ -626,7 +626,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
{
try
{
Logger.Debug(Name + ": Cancelling");
Logger.Info(Name + ": Cancelling");
token.Cancel();
}
catch (Exception ex)
@@ -639,16 +639,16 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
{
try
{
Logger.Debug(Name + ": Waiting on Task");
Logger.Info(Name + ": Waiting on Task");
var exited = Task.WaitAll(new[] { task }, 2000);
if (exited)
{
Logger.Debug(Name + ": Task exited");
Logger.Info(Name + ": Task exited");
}
else
{
Logger.Debug(Name + ": Timed out waiting for task to stop");
Logger.Info(Name + ": Timed out waiting for task to stop");
}
}
catch (Exception ex)