1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 09:47:39 +00:00

Merge branch 'master' of git://github.com/kayone/NzbDrone

This commit is contained in:
Mark McDowall 2011-08-24 16:57:00 -07:00
commit 667fc5d69b

View file

@ -187,7 +187,14 @@ namespace NzbDrone.Core.Providers.Jobs
}
else
{
Logger.Error("Execution lock has fucked up. Thread still active. Ignoring request.");
var messge = "Job Thread is null";
if (_jobThread != null)
{
messge = "Job Thread State: " + _jobThread.ThreadState;
}
Logger.Error("Execution lock has fucked up. {0}. Ignoring request.", messge);
}
}