]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/libstack/osrf_log.h
activity log is now a standalone log target: file or syslog:<facility>
[Evergreen.git] / OpenSRF / src / libstack / osrf_log.h
1 #include "opensrf/utils.h"
2 #include "osrf_settings.h"
3 #include "osrfConfig.h"
4
5 enum OSRF_LOG_LEVEL { OSRF_ERROR = 1, OSRF_WARN = 2, OSRF_INFO = 3, OSRF_DEBUG = 4 };
6
7 int osrfLogInit(char* appname);
8 void osrfLog( enum OSRF_LOG_LEVEL, char* msg, ... );
9