Skip to content

Commit fd29616

Browse files
committed
fix(logging): Output consistency
1 parent dde24a2 commit fd29616

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/suite/result.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (r *Result) GetLogAttribute() slog.Attr {
4040
Value: slog.GroupValue(
4141
slog.Bool("success", r.Success),
4242
slog.Duration("duration", r.Duration),
43-
slog.Int("endpoint_result_count", len(r.EndpointResults)),
43+
slog.Int("endpoints", len(r.EndpointResults)),
4444
slog.Int("error_count", len(r.Errors)),
4545
),
4646
}

watchdog/suite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func executeSuite(s *suite.Suite, cfg *config.Config, extraLabels []string) {
7575
}
7676
}
7777
}
78-
logger.Info("Monitoring complete", result.GetLogAttribute())
78+
logger.Info("Monitoring done", result.GetLogAttribute())
7979
}
8080

8181
// UpdateSuiteStatus persists the suite result in the database

0 commit comments

Comments
 (0)