1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-4598: Fix the syslog setup script. Add syslog options for broken/non-syslog setup.

This commit is contained in:
benthompson15
2021-04-29 16:33:48 -05:00
parent 374103220c
commit 1eea9f9e47
3 changed files with 9 additions and 9 deletions

View File

@ -35,7 +35,7 @@ SMLogging::SMLogging()
{
//TODO: make this configurable
setlogmask (LOG_UPTO (LOG_DEBUG));
openlog ("StorageManager", LOG_PID | LOG_NDELAY, LOG_LOCAL1);
openlog ("StorageManager", LOG_PID | LOG_NDELAY | LOG_PERROR | LOG_CONS, LOG_LOCAL1);
}
SMLogging::~SMLogging()