Skip to content

Commit

Permalink
[config] Don't log network_process.enabled by default (#32172)
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlu authored Dec 16, 2024
1 parent b3667a3 commit afd5e2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/network/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ func New() *Config {
log.Info("network tracer DNS inspection disabled by configuration")
}

if c.EnableProcessEventMonitoring {
log.Info("network process event monitoring enabled")
if !c.EnableProcessEventMonitoring {
log.Info("network process event monitoring disabled")
}
return c
}
Expand Down

0 comments on commit afd5e2a

Please sign in to comment.