This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Minor refactoring in LogDecorator
pull/68/head
Cesar De la Torre
8 years ago
parent
2f54214785
commit
7b9d14fe2a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
;
}
Write
Preview
Loading…
Cancel
Save