Skip to content

Commit

Permalink
sync Service.LogError with LogError
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Feb 26, 2024
1 parent 3eddd50 commit 15ebaf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (service *Service) LogError(msg string, keyvals ...interface{}) {
switch logger := l.(type) {
case ContextLogAdapter:
logger.ErrorContext(ctx, msg, keyvals...)
case WarningLogAdapter:
case LogAdapter:
logger.Error(msg, keyvals...)
}
}
Expand Down

0 comments on commit 15ebaf5

Please sign in to comment.