Skip to content

Commit

Permalink
Merge pull request #419 from nyrahul/main
Browse files Browse the repository at this point in the history
fixed stdout issue with log message
  • Loading branch information
daemon1024 authored Mar 26, 2024
2 parents bb54856 + eeb3391 commit 809e8bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func StartObserver(c *k8s.Client, o Options) error {
if o.LogFilter == "all" || o.LogFilter == "policy" {
// watch alerts
go logClient.WatchAlerts(o)
fmt.Fprintln(os.Stdout, "Started to watch alerts")
fmt.Fprintln(os.Stderr, "Started to watch alerts")
}

if o.LogFilter == "all" || o.LogFilter == "system" {
Expand Down

0 comments on commit 809e8bf

Please sign in to comment.