We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c71053 commit 4452a14Copy full SHA for 4452a14
agent/agent.go
@@ -1290,11 +1290,7 @@ func (a *agent) manageProcessPriority(ctx context.Context) ([]*agentproc.Process
1290
// Getpriority actually returns priority for the nice value
1291
// which is niceness + 20, so here 20 = a niceness of 0 (aka unset).
1292
if score != 20 {
1293
- if score != niceness {
1294
- logger.Debug(ctx, "skipping process due to custom niceness",
1295
- slog.F("niceness", score),
1296
- )
1297
- }
+ // We don't log here since it can get spammy
1298
continue
1299
}
1300
0 commit comments