mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 21:12:43 +02:00
less chatty command events.
This commit is contained in:
@@ -101,7 +101,7 @@ namespace NzbDrone.Core.Messaging.Commands
|
||||
try
|
||||
{
|
||||
_trackCommands.Start(command);
|
||||
_eventAggregator.PublishEvent(new CommandUpdatedEvent(command));
|
||||
BroadcastCommandUpdate(command);
|
||||
|
||||
if (!MappedDiagnosticsContext.Contains("CommandId") && command.SendUpdatesToClient)
|
||||
{
|
||||
@@ -118,7 +118,7 @@ namespace NzbDrone.Core.Messaging.Commands
|
||||
}
|
||||
finally
|
||||
{
|
||||
_eventAggregator.PublishEvent(new CommandUpdatedEvent(command));
|
||||
BroadcastCommandUpdate(command);
|
||||
_eventAggregator.PublishEvent(new CommandExecutedEvent(command));
|
||||
|
||||
if (MappedDiagnosticsContext.Get("CommandId") == command.Id.ToString())
|
||||
@@ -129,5 +129,14 @@ namespace NzbDrone.Core.Messaging.Commands
|
||||
|
||||
_logger.Trace("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, command.Runtime.ToString(""));
|
||||
}
|
||||
|
||||
|
||||
private void BroadcastCommandUpdate(Command command)
|
||||
{
|
||||
if (command.SendUpdatesToClient)
|
||||
{
|
||||
_eventAggregator.PublishEvent(new CommandUpdatedEvent(command));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user