Skip to content

Commit

Permalink
change ulimit, open files and maxprocs to debug log level (#857)
Browse files Browse the repository at this point in the history
  • Loading branch information
malud authored Dec 3, 2024
1 parent 4de9d88 commit 297af64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

Unreleased changes are available as `coupergateway/couper:edge` container.

* **Changed**
* `ulimit`, open files and max procs values are now logged with `debug` log level ([#857](https://github.com/coupergateway/couper/pull/857))

---

## [1.13.0](https://github.com/coupergateway/couper/releases/tag/v1.13.0)
Expand Down
2 changes: 1 addition & 1 deletion command/run_syscall.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ func logRlimit(logEntry *logrus.Entry) {
if err != nil {
logEntry.Warnf("ulimit: error retrieving file descriptor limit")
} else {
logEntry.Infof("ulimit: max open files: %d (hard limit: %d)", lim.Cur, lim.Max)
logEntry.Debugf("ulimit: max open files: %d (hard limit: %d)", lim.Cur, lim.Max)
}
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func realmain(ctx context.Context, arguments []string) int {
logger := newLogger(confFile.Settings.LogFormat, confFile.Settings.LogLevel, confFile.Settings.LogPretty)

// respect assigned CPU limits
_, err = maxprocs.Set(maxprocs.Logger(logger.Infof))
_, err = maxprocs.Set(maxprocs.Logger(logger.Debugf))
if err != nil {
logrus.Error("maxprocs.Set: ", err)
}
Expand Down

0 comments on commit 297af64

Please sign in to comment.