/** * Copyright (c) 2021 OceanBase * OceanBase Database Proxy(ODP) is licensed under Mulan PubL v2. * You can use this software according to the terms and conditions of the Mulan PubL v2. * You may obtain a copy of Mulan PubL v2 at: * http://license.coscl.org.cn/MulanPubL-2.0 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. * See the Mulan PubL v2 for more details. */ #define USING_LOG_PREFIX LIB #include "lib/oblog/ob_trace_log.h" #include "lib/ob_define.h" #include "lib/oblog/ob_log.h" #include "lib/time/tbtimeutil.h" namespace oceanbase { namespace common { const char *const TraceLog::LOG_LEVEL_ENV_KEY = "_OB_TRACE_LOG_LEVEL_"; const char *const TraceLog::level_strs_[] = {"ERROR", "USER_ERR", "WARN", "INFO", "TRACE", "DEBUG"}; volatile int TraceLog::log_level_ = OB_LOG_LEVEL_TRACE; bool TraceLog::got_env_ = false; int32_t TraceLog::up_log_level() { int32_t prev_log_level = log_level_; int32_t modify_log_level = log_level_ - 1; if (OB_LOG_LEVEL_DEBUG >= modify_log_level && OB_LOG_LEVEL_ERROR <= modify_log_level) { log_level_ = modify_log_level; } LOG_INFO("up_log_level", "prev_log_level", prev_log_level, "cur_log_level", log_level_); return log_level_; } int32_t TraceLog::down_log_level() { int32_t prev_log_level = log_level_; int32_t modify_log_level = log_level_ + 1; if (OB_LOG_LEVEL_DEBUG >= modify_log_level && OB_LOG_LEVEL_ERROR <= modify_log_level) { log_level_ = modify_log_level; } LOG_INFO("down_log_level", "prev_log_level", prev_log_level, "cur_log_level", log_level_); return log_level_; } int32_t TraceLog::set_log_level(const char *log_level_str) { if (NULL != log_level_str) { set_log_level(log_level_str, log_level_); got_env_ = true; } return log_level_; } int32_t TraceLog::set_log_level(const char *log_level_str, volatile int &log_level) { if (NULL != log_level_str) { long unsigned int level_num = sizeof(level_strs_) / sizeof(const char *); bool find_level = false; for (int32_t idx = 0; !find_level && idx < level_num; ++idx) { if (0 == STRCASECMP(level_strs_[idx], log_level_str)) { log_level = idx; find_level = true; } } } return log_level; } } }