Skip to content

Commit

Permalink
Change invalid history builder log from Error -> Warn.
Browse files Browse the repository at this point in the history
  • Loading branch information
sivakku committed Feb 6, 2017
1 parent c448565 commit 1a057d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/history/loggingHelpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func logInvalidHistoryActionEvent(logger bark.Logger, action string, eventID int
logger.WithFields(bark.Fields{
tagWorkflowEventID: invalidHistoryActionEventID,
tagHistoryBuilderAction: action,
}).Errorf("Invalid history builder state for action: EventID: %v, State: %v", eventID, state)
}).Warn("Invalid history builder state for action: EventID: %v, State: %v", eventID, state)
}

func logHistorySerializationErrorEvent(logger bark.Logger, err error, msg string) {
Expand Down

0 comments on commit 1a057d6

Please sign in to comment.