You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
295 B
18 lines
295 B
#include "logger.h"
|
|
|
|
extern void logger_syslog(int level, const char * msg);
|
|
|
|
INIT_CLASS(LOGGER);
|
|
|
|
__construct(LOGGER)
|
|
{
|
|
this->logfncts[0] = logger_syslog;
|
|
this->logfncts_count = 1;
|
|
}
|
|
|
|
__destruct(LOGGER) {}
|
|
__jsonConst(LOGGER) {}
|
|
__toJson(LOGGER) {}
|
|
__clear(LOGGER) {}
|
|
|
|
// vim: set ts=4 sw=4:
|