mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
14 lines
230 B
C
14 lines
230 B
C
|
// Simple logging functions for the RFS server
|
||
|
|
||
|
#ifndef __LOG_H__
|
||
|
#define __LOG_H__
|
||
|
|
||
|
// Logging levels
|
||
|
#define LOG_NONE 0
|
||
|
#define LOG_ALL 1
|
||
|
|
||
|
void log_init( int level );
|
||
|
void log_msg( const char *msg, ... );
|
||
|
|
||
|
#endif
|