Skip to content

Commit 3d14c51

Browse files
committed
Prefix incident ids with # in the logs
1 parent 3ab75f1 commit 3d14c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/incident/incident.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (i *Incident) ObjectDisplayName() string {
4848
}
4949

5050
func (i *Incident) String() string {
51-
return fmt.Sprintf("%d", i.incidentRowID)
51+
return fmt.Sprintf("#%d", i.incidentRowID)
5252
}
5353

5454
func (i *Incident) ID() int64 {

0 commit comments

Comments
 (0)