Skip to content

Commit

Permalink
Merge pull request #4993 from svmhdvn/patch-1
Browse files Browse the repository at this point in the history
imap/telemetry: log rusage at LOG_INFO
  • Loading branch information
elliefm committed Aug 19, 2024
2 parents 352f9a0 + 551b5e5 commit fdfb24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imap/telemetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ EXPORTED void telemetry_rusage(char *userid)
* Some systems provide significantly more data, but POSIX
* guarantees user & sys CPU time.
*/
syslog(LOG_NOTICE, "USAGE %s user: " TIME_T_FMT ".%.6d sys: " TIME_T_FMT ".%.6d", userid,
syslog(LOG_INFO, "USAGE %s user: " TIME_T_FMT ".%.6d sys: " TIME_T_FMT ".%.6d", userid,
user.tv_sec, (int)user.tv_usec,
sys.tv_sec, (int)sys.tv_usec);

Expand Down

0 comments on commit fdfb24a

Please sign in to comment.