Project

General

Profile

Backport #14137

Updated by Loïc Dachary over 8 years ago

https://github.com/ceph/ceph/pull/6993 In src/log/Log.cc we call syslog like so; 

 syslog(LOG_USER, "%s%s", buf, s.c_str()); 
 syslog(LOG_USER, "%s", s); 

 Calling syslog with LOG_USER alone implies LOG_USER|LOG_EMERG and causes the messages to be logged at emergency priority.

Back