您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
291 B

  1. #include <cpputils/logging/logger.h>
  2. using namespace ::utl::logging;
  3. const std::string& logger::name() const
  4. {
  5. static std::string name;
  6. return name;
  7. }
  8. bool logger::is_enabled(log_level level) const
  9. { return false; }
  10. void logger::log(data_ptr_s data) const
  11. { /* no op */ }