mgmtLog.h 2.2 KB
Newer Older
S
slguan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef TDENGINE_MGMT_LOG_H
#define TDENGINE_MGMT_LOG_H

#ifdef __cplusplus
extern "C" {
#endif

#include "tlog.h"

S
slguan 已提交
25 26 27
extern int32_t mdebugFlag;
extern int32_t sdbDebugFlag;

S
slguan 已提交
28 29 30
// mnode log function
#define mError(...)                          \
  if (mdebugFlag & DEBUG_ERROR) {            \
S
slguan 已提交
31
    taosPrintLog("ERROR MND ", 255, __VA_ARGS__); \
S
slguan 已提交
32 33 34
  }
#define mWarn(...)                                  \
  if (mdebugFlag & DEBUG_WARN) {                    \
S
slguan 已提交
35
    taosPrintLog("WARN  MND ", mdebugFlag, __VA_ARGS__); \
S
slguan 已提交
36 37 38
  }
#define mTrace(...)                           \
  if (mdebugFlag & DEBUG_TRACE) {             \
S
slguan 已提交
39
    taosPrintLog("MND ", mdebugFlag, __VA_ARGS__); \
S
slguan 已提交
40 41
  }
#define mPrint(...) \
S
slguan 已提交
42
  { taosPrintLog("MND ", 255, __VA_ARGS__); }
S
slguan 已提交
43

S
slguan 已提交
44 45 46
#define mLError(...) mError(__VA_ARGS__)
#define mLWarn(...)  mWarn(__VA_ARGS__)
#define mLPrint(...) mPrint(__VA_ARGS__)
S
slguan 已提交
47 48 49

#define sdbError(...)                            \
  if (sdbDebugFlag & DEBUG_ERROR) {              \
S
slguan 已提交
50
    taosPrintLog("ERROR MND-SDB ", 255, __VA_ARGS__); \
S
slguan 已提交
51 52 53
  }
#define sdbWarn(...)                                      \
  if (sdbDebugFlag & DEBUG_WARN) {                        \
S
slguan 已提交
54
    taosPrintLog("WARN  MND-SDB ", sdbDebugFlag, __VA_ARGS__); \
S
slguan 已提交
55 56 57
  }
#define sdbTrace(...)                               \
  if (sdbDebugFlag & DEBUG_TRACE) {                 \
S
slguan 已提交
58
    taosPrintLog("MND-SDB ", sdbDebugFlag, __VA_ARGS__); \
S
slguan 已提交
59 60
  }
#define sdbPrint(...) \
S
slguan 已提交
61
  { taosPrintLog("MND-SDB ", 255, __VA_ARGS__); }
S
slguan 已提交
62

S
slguan 已提交
63 64 65
#define sdbLError(...) sdbError(__VA_ARGS__)
#define sdbLWarn(...)  sdbWarn(__VA_ARGS__)
#define sdbLPrint(...) sdbPrint(__VA_ARGS__)
S
slguan 已提交
66 67 68 69 70 71

#ifdef __cplusplus
}
#endif

#endif