adjust log variables
This commit is contained in:
parent
605da57489
commit
51e2870cb8
|
@ -22,9 +22,24 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define DEBUG_FATAL 1U
|
||||||
|
#define DEBUG_ERROR DEBUG_FATAL
|
||||||
|
#define DEBUG_WARN 2U
|
||||||
|
#define DEBUG_INFO DEBUG_WARN
|
||||||
|
#define DEBUG_DEBUG 4U
|
||||||
|
#define DEBUG_TRACE 8U
|
||||||
|
#define DEBUG_DUMP 16U
|
||||||
|
#define DEBUG_SCREEN 64U
|
||||||
|
#define DEBUG_FILE 128U
|
||||||
|
|
||||||
|
extern bool tsLogEmbedded;
|
||||||
extern bool tsAsyncLog;
|
extern bool tsAsyncLog;
|
||||||
extern int32_t tsNumOfLogLines;
|
extern int32_t tsNumOfLogLines;
|
||||||
extern int32_t tsLogKeepDays;
|
extern int32_t tsLogKeepDays;
|
||||||
|
extern int64_t tsNumOfErrorLogs;
|
||||||
|
extern int64_t tsNumOfInfoLogs;
|
||||||
|
extern int64_t tsNumOfDebugLogs;
|
||||||
|
extern int64_t tsNumOfTraceLogs;
|
||||||
extern int32_t dDebugFlag;
|
extern int32_t dDebugFlag;
|
||||||
extern int32_t vDebugFlag;
|
extern int32_t vDebugFlag;
|
||||||
extern int32_t mDebugFlag;
|
extern int32_t mDebugFlag;
|
||||||
|
@ -40,16 +55,6 @@ extern int32_t tsdbDebugFlag;
|
||||||
extern int32_t tqDebugFlag;
|
extern int32_t tqDebugFlag;
|
||||||
extern int32_t fsDebugFlag;
|
extern int32_t fsDebugFlag;
|
||||||
|
|
||||||
#define DEBUG_FATAL 1U
|
|
||||||
#define DEBUG_ERROR DEBUG_FATAL
|
|
||||||
#define DEBUG_WARN 2U
|
|
||||||
#define DEBUG_INFO DEBUG_WARN
|
|
||||||
#define DEBUG_DEBUG 4U
|
|
||||||
#define DEBUG_TRACE 8U
|
|
||||||
#define DEBUG_DUMP 16U
|
|
||||||
#define DEBUG_SCREEN 64U
|
|
||||||
#define DEBUG_FILE 128U
|
|
||||||
|
|
||||||
int32_t taosInitLog(const char *logName, int32_t maxFiles);
|
int32_t taosInitLog(const char *logName, int32_t maxFiles);
|
||||||
void taosCloseLog();
|
void taosCloseLog();
|
||||||
void taosResetLog();
|
void taosResetLog();
|
||||||
|
@ -68,12 +73,10 @@ void taosPrintLongString(const char *flags, int32_t dflag, const char *format, .
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
|
||||||
extern int8_t tscEmbeddedInUtil;
|
#define uFatal(...) { if (uDebugFlag & DEBUG_FATAL) { taosPrintLog("UTL FATAL", tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
|
||||||
|
#define uError(...) { if (uDebugFlag & DEBUG_ERROR) { taosPrintLog("UTL ERROR ", tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
|
||||||
#define uFatal(...) { if (uDebugFlag & DEBUG_FATAL) { taosPrintLog("UTL FATAL", tscEmbeddedInUtil ? 255 : uDebugFlag, __VA_ARGS__); }}
|
#define uWarn(...) { if (uDebugFlag & DEBUG_WARN) { taosPrintLog("UTL WARN ", tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
|
||||||
#define uError(...) { if (uDebugFlag & DEBUG_ERROR) { taosPrintLog("UTL ERROR ", tscEmbeddedInUtil ? 255 : uDebugFlag, __VA_ARGS__); }}
|
#define uInfo(...) { if (uDebugFlag & DEBUG_INFO) { taosPrintLog("UTL ", tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
|
||||||
#define uWarn(...) { if (uDebugFlag & DEBUG_WARN) { taosPrintLog("UTL WARN ", tscEmbeddedInUtil ? 255 : uDebugFlag, __VA_ARGS__); }}
|
|
||||||
#define uInfo(...) { if (uDebugFlag & DEBUG_INFO) { taosPrintLog("UTL ", tscEmbeddedInUtil ? 255 : uDebugFlag, __VA_ARGS__); }}
|
|
||||||
#define uDebug(...) { if (uDebugFlag & DEBUG_DEBUG) { taosPrintLog("UTL ", uDebugFlag, __VA_ARGS__); }}
|
#define uDebug(...) { if (uDebugFlag & DEBUG_DEBUG) { taosPrintLog("UTL ", uDebugFlag, __VA_ARGS__); }}
|
||||||
#define uTrace(...) { if (uDebugFlag & DEBUG_TRACE) { taosPrintLog("UTL ", uDebugFlag, __VA_ARGS__); }}
|
#define uTrace(...) { if (uDebugFlag & DEBUG_TRACE) { taosPrintLog("UTL ", uDebugFlag, __VA_ARGS__); }}
|
||||||
|
|
||||||
|
|
|
@ -478,10 +478,10 @@ int32_t taosCreateLog(const char *logname, int32_t logFileNum, const char *cfgDi
|
||||||
if (pCfg == NULL) return -1;
|
if (pCfg == NULL) return -1;
|
||||||
|
|
||||||
if (tsc) {
|
if (tsc) {
|
||||||
tscEmbeddedInUtil = 0;
|
tsLogEmbedded = 0;
|
||||||
if (taosAddClientLogCfg(pCfg) != 0) return -1;
|
if (taosAddClientLogCfg(pCfg) != 0) return -1;
|
||||||
} else {
|
} else {
|
||||||
tscEmbeddedInUtil = 1;
|
tsLogEmbedded = 1;
|
||||||
if (taosAddClientLogCfg(pCfg) != 0) return -1;
|
if (taosAddClientLogCfg(pCfg) != 0) return -1;
|
||||||
if (taosAddServerLogCfg(pCfg) != 0) return -1;
|
if (taosAddServerLogCfg(pCfg) != 0) return -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ void Testbase::InitLog(const char* path) {
|
||||||
wDebugFlag = 0;
|
wDebugFlag = 0;
|
||||||
sDebugFlag = 0;
|
sDebugFlag = 0;
|
||||||
tsdbDebugFlag = 0;
|
tsdbDebugFlag = 0;
|
||||||
tscEmbeddedInUtil = 1;
|
tsLogEmbedded = 1;
|
||||||
tsAsyncLog = 0;
|
tsAsyncLog = 0;
|
||||||
|
|
||||||
taosRemoveDir(path);
|
taosRemoveDir(path);
|
||||||
|
|
|
@ -148,7 +148,7 @@ class TransObj {
|
||||||
wDebugFlag = 0;
|
wDebugFlag = 0;
|
||||||
sDebugFlag = 0;
|
sDebugFlag = 0;
|
||||||
tsdbDebugFlag = 0;
|
tsdbDebugFlag = 0;
|
||||||
tscEmbeddedInUtil = 1;
|
tsLogEmbedded = 1;
|
||||||
tsAsyncLog = 0;
|
tsAsyncLog = 0;
|
||||||
|
|
||||||
std::string path = "/tmp/transport";
|
std::string path = "/tmp/transport";
|
||||||
|
|
|
@ -66,13 +66,17 @@ typedef struct {
|
||||||
|
|
||||||
static int8_t tsLogInited = 0;
|
static int8_t tsLogInited = 0;
|
||||||
static SLogObj tsLogObj = {.fileNum = 1};
|
static SLogObj tsLogObj = {.fileNum = 1};
|
||||||
|
static int64_t tsAsyncLogLostLines = 0;
|
||||||
|
static int32_t tsWriteInterval = LOG_DEFAULT_INTERVAL;
|
||||||
|
|
||||||
int8_t tscEmbeddedInUtil = 0;
|
bool tsLogEmbedded = 0;
|
||||||
int32_t tsLogKeepDays = 0;
|
|
||||||
bool tsAsyncLog = true;
|
bool tsAsyncLog = true;
|
||||||
int32_t tsNumOfLogLines = 10000000;
|
int32_t tsNumOfLogLines = 10000000;
|
||||||
int64_t tsAsyncLogLostLines = 0;
|
int32_t tsLogKeepDays = 0;
|
||||||
int32_t tsWriteInterval = LOG_DEFAULT_INTERVAL;
|
int64_t tsNumOfErrorLogs = 0;
|
||||||
|
int64_t tsNumOfInfoLogs = 0;
|
||||||
|
int64_t tsNumOfDebugLogs = 0;
|
||||||
|
int64_t tsNumOfTraceLogs = 0;
|
||||||
|
|
||||||
// log
|
// log
|
||||||
int32_t dDebugFlag = 135;
|
int32_t dDebugFlag = 135;
|
||||||
|
|
Loading…
Reference in New Issue