Browse Source

Minor refactoring in LogDecorator

pull/68/head
Cesar De la Torre 8 years ago
parent
commit
7b9d14fe2a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs

+ 1
- 1
src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs View File

@ -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;
}


Loading…
Cancel
Save