2021-02-09 18:32:58 +01:00
|
|
|
#ifndef _LOGGING_H_
|
|
|
|
#define _LOGGING_H_
|
|
|
|
|
|
|
|
#include <syslog.h>
|
|
|
|
|
|
|
|
void logmsg(int prio, const char* format, ...);
|
2021-02-11 11:28:43 +01:00
|
|
|
void setfacility(const char *facility_p);
|
2021-02-09 18:32:58 +01:00
|
|
|
#endif // _LOGGING_H_
|