Lines Matching defs:DebugLevel
45 enum DebugLevel {
78 const std::map<DebugLevel, const std::string> DebugLevelMap = {
90 DebugLevel SetLogLevel(DebugLevel debugLevel);
95 int Log(DebugLevel level, const std::string &logTag, const char *fmt, ...) const
100 DebugLevel GetLogLevel() const
121 bool ShouldLog(DebugLevel level, const std::string &logtag) const;
122 DebugLevel GetLogLevelByName(const std::string &) const;
123 DebugLevel GetLogLevelByTag(const std::string &) const;
124 const std::string GetLogLevelName(DebugLevel) const;
131 static DebugLevel debugLevel_;
138 std::map<std::string, DebugLevel> logTagLevelmap_;
167 explicit ScopeDebugLevel(DebugLevel level, bool mix = false);
171 DebugLevel savedDebugLevel_;
344 ScopeDebugLevel(DebugLevel level, bool mix = false) {}