From 7b9d14fe2ad8bf5a5b29654f94db12c0ff2660b2 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Tue, 21 Feb 2017 12:17:16 -0800 Subject: [PATCH] Minor refactoring in LogDecorator --- .../Ordering.API/Application/Decorators/LogDecorator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs b/src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs index 693151be3..1b292297d 100644 --- a/src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs +++ b/src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs @@ -26,7 +26,7 @@ var response = await _inner.Handle(message); - _logger.LogInformation($"Succedded executed command {_inner.GetType().FullName}"); + _logger.LogInformation($"Command executed successfully {_inner.GetType().FullName}"); return response; }