Use e.Message field instead of e.Code.Message()
Signed-off-by: Oleg Bulatov <oleg@bulatov.me>master
							parent
							
								
									f0cc927784
								
							
						
					
					
						commit
						7bc438a534
					
				|  | @ -746,7 +746,7 @@ func (app *App) logError(ctx context.Context, errors errcode.Errors) { | |||
| 		case errcode.Error: | ||||
| 			e, _ := e1.(errcode.Error) | ||||
| 			c = context.WithValue(ctx, errCodeKey{}, e.Code) | ||||
| 			c = context.WithValue(c, errMessageKey{}, e.Code.Message()) | ||||
| 			c = context.WithValue(c, errMessageKey{}, e.Message) | ||||
| 			c = context.WithValue(c, errDetailKey{}, e.Detail) | ||||
| 		case errcode.ErrorCode: | ||||
| 			e, _ := e1.(errcode.ErrorCode) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue