server: fix compile error

This commit is contained in:
David Anderson 2017-06-07 12:43:56 -07:00
parent ec7d13f7dc
commit b16718f43c
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ public:
enum { MSG_CRITICAL=1, MSG_WARNING, MSG_NORMAL, MSG_DEBUG, MSG_DETAIL };
SCHED_MSG_LOG(FILE* f): MSG_LOG(f) { debug_level = MSG_NORMAL; }
void set_debug_level(int new_level) { debug_level = new_level; }
void set_indent_level(const int new_indent_level);
bool debug() {return debug_level >= MSG_DEBUG;}
bool detail() {return debug_level >= MSG_DETAIL;}