1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-03 15:12:13 +02:00

Improved job thread execution locking log

This commit is contained in:
kay.one 2011-08-24 16:54:48 -07:00
parent 1e9b279a9b
commit 6bab9a34dd

View File

@ -179,7 +179,14 @@ namespace NzbDrone.Core.Providers.Jobs
} }
else 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);
} }
} }