mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
Major logging overhaul
This commit is contained in:
parent
953024cd40
commit
2f3430387e
102 changed files with 284 additions and 238 deletions
|
|
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Messaging.Commands
|
|||
|
||||
if (_trackCommands.FindExisting(command) != null)
|
||||
{
|
||||
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
|
||||
_logger.Trace("Command is already in progress: {0}", command.GetType().Name);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -64,7 +64,7 @@ namespace NzbDrone.Core.Messaging.Commands
|
|||
|
||||
if (existingCommand != null)
|
||||
{
|
||||
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
|
||||
_logger.Trace("Command is already in progress: {0}", command.GetType().Name);
|
||||
return existingCommand;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue