Skip to content

Commit

Permalink
Fix pfcpagent log message format (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhall11 committed Mar 9, 2022
1 parent fd80696 commit 950ae3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pfcpiface/messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type HandlePFCPMsgError struct {
}

func (e *HandlePFCPMsgError) Error() string {
return "Error during " + e.Op + e.Err.Error()
return "Error during " + e.Op + ": " + e.Err.Error()
}

func errUnmarshal(err error) *HandlePFCPMsgError {
Expand Down

0 comments on commit 950ae3f

Please sign in to comment.