]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/libstack/osrf_log.h
added the md5 server (opensrf.version)
[OpenSRF.git] / 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