MOUSE.Core.Logging.Serilog.SerilogCoreEvents.OperationProcessingFailed C# (CSharp) Method

OperationProcessingFailed() public method

public OperationProcessingFailed ( INetNode node, INetChannel channel, IOperationContext operation, Exception exception ) : void
node INetNode
channel INetChannel
operation IOperationContext
exception System.Exception
return void
        public void OperationProcessingFailed(INetNode node, INetChannel channel, IOperationContext operation, Exception exception)
        {
            if (_logger.IsEnabled(LogEventLevel.Warning))
                _logger.Warning("NetNode {@node} on NetChannel {@channel} failed to process operation {@operation} with {@exception}", node, channel, operation, exception);
        }