Skip to content

Commit

Permalink
Prefix incident ids with # in the logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed May 24, 2023
1 parent 3ab75f1 commit 3d14c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/incident/incident.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (i *Incident) ObjectDisplayName() string {
}

func (i *Incident) String() string {
return fmt.Sprintf("%d", i.incidentRowID)
return fmt.Sprintf("#%d", i.incidentRowID)
}

func (i *Incident) ID() int64 {
Expand Down

0 comments on commit 3d14c51

Please sign in to comment.