mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 09:21:57 +00:00
Merge branch 'master' of git://github.com/kayone/NzbDrone
This commit is contained in:
commit
667fc5d69b
1 changed files with 8 additions and 1 deletions
|
@ -187,7 +187,14 @@ public virtual void QueueJob(Type jobType, int targetId = 0, int secondaryTarget
|
||||||
}
|
}
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue