Minor refactoring in LogDecorator

This commit is contained in:
Cesar De la Torre 2017-02-21 12:17:16 -08:00
parent 2f54214785
commit 7b9d14fe2a

View File

@ -26,7 +26,7 @@
var response = await _inner.Handle(message); var response = await _inner.Handle(message);
_logger.LogInformation($"Succedded executed command {_inner.GetType().FullName}"); _logger.LogInformation($"Command executed successfully {_inner.GetType().FullName}");
return response; return response;
} }