Skip to content

Commit 7b9d14f

Browse files
Minor refactoring in LogDecorator
1 parent 2f54214 commit 7b9d14f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Services/Ordering/Ordering.API/Application/Decorators/LogDecorator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public async Task<TResponse> Handle(TRequest message)
2626

2727
var response = await _inner.Handle(message);
2828

29-
_logger.LogInformation($"Succedded executed command {_inner.GetType().FullName}");
29+
_logger.LogInformation($"Command executed successfully {_inner.GetType().FullName}");
3030

3131
return response;
3232
}

0 commit comments

Comments
 (0)