mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
logging update.
This commit is contained in:
parent
a2e84a8f83
commit
85fd0e1c22
3 changed files with 14 additions and 3 deletions
|
@ -17,7 +17,12 @@ namespace NzbDrone.Core.Jobs
|
|||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("[{0}({1})]", JobType.Name, Options);
|
||||
if (Options != null)
|
||||
{
|
||||
return string.Format("[{0}({1})]", JobType.Name, Options);
|
||||
}
|
||||
|
||||
return string.Format("[{0}]", JobType.Name);
|
||||
}
|
||||
|
||||
public enum JobSourceType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue