14 lines
233 B
C++
14 lines
233 B
C++
#include "tariff_log.h"
|
|
|
|
|
|
static int debugLevel = DBG_LEVEL_CRITICAL;
|
|
// static int debugLevel = DBG_LEVEL_INFO;
|
|
|
|
void setDebugLevel(int level) {
|
|
debugLevel = level;
|
|
}
|
|
|
|
int getDebugLevel() {
|
|
return debugLevel;
|
|
}
|