Log manager additions.

Changes related to the replacement of the notion of logfiles
with the notion of syslog priorities.
This commit is contained in:
Johan Wikman
2015-11-05 16:14:36 +02:00
parent 33294e4c95
commit 80344babd7
2 changed files with 144 additions and 0 deletions

View File

@ -140,6 +140,11 @@ extern int lm_enabled_logfiles_bitmask;
extern ssize_t log_ses_count[];
extern __thread log_info_t tls_log_info;
int mxs_log_flush();
int mxs_log_rotate();
int mxs_log_enable_priority(int priority);
int mxs_log_disable_priority(int priority);
bool skygw_logmanager_init(int argc, char* argv[]);
void skygw_logmanager_done(void);
void skygw_logmanager_exit(void);