| #include "liblog.h" |
| #include "mbtk_type.h" |
| |
| |
| void lynq_log_configuration_init(const char *log_name) |
| { |
| UNUSED(log_name); |
| |
| |
| } |
| |
| void lynq_log_global_output(log_level_enum Level,const char *format,...) |
| { |
| UNUSED(Level); |
| UNUSED(format); |
| |
| |
| } |
| |
| int lynq_syslog_set_file_size(int value) |
| { |
| UNUSED(value); |
| |
| return 0; |
| } |
| |
| int lynq_syslog_get_file_size(void) |
| { |
| |
| return -1; |
| } |
| |
| int lynq_syslog_set_file_rotate(int value) |
| { |
| UNUSED(value); |
| |
| return 0; |
| } |
| |
| int lynq_syslog_get_file_rotate(void) |
| { |
| |
| return 0; |
| } |
| |
| int lynq_set_log_level(const char * module_name, log_level_enum level) |
| { |
| UNUSED(module_name); |
| UNUSED(level); |
| |
| |
| return 0; |
| } |
| |
| int lynq_get_log_level(const char * module_name, log_level_enum *level) |
| { |
| UNUSED(module_name); |
| UNUSED(level); |
| |
| |
| return 0; |
| } |
| |
| int lynq_set_special_log_level(const char * exe_name, const char * module_name, log_level_enum level) |
| { |
| UNUSED(exe_name); |
| UNUSED(module_name); |
| UNUSED(level); |
| |
| |
| return 0; |
| } |
| |
| int lynq_get_special_log_level(const char * exe_name, const char * module_name, log_level_enum *level) |
| { |
| UNUSED(exe_name); |
| UNUSED(module_name); |
| UNUSED(level); |
| |
| |
| return 0; |
| } |
| |
| int lynq_notify_recalc_log_level(pid_t pid) |
| { |
| UNUSED(pid); |
| |
| return 0; |
| } |
| |
| void lynq_log_debug(const char *format,...) |
| { |
| UNUSED(format); |
| |
| |
| } |
| |
| void lynq_log_info(const char *format,...) |
| { |
| UNUSED(format); |
| |
| |
| } |
| |
| void lynq_log_warning(const char *format,...) |
| { |
| UNUSED(format); |
| |
| |
| } |
| |
| void lynq_log_error(const char *format,...) |
| { |
| UNUSED(format); |
| |
| |
| } |
| |
| void lynq_log_verbose(const char *format,...) |
| { |
| UNUSED(format); |
| |
| |
| } |