Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:Logger

47 class Logger {
49 Logger() : level_(LOG_ERROR) {}
50 virtual ~Logger() {}
65 static inline Logger* set_logger_impl(Logger* logger) {
66 impl_ = logger;
67 return logger;
70 static inline Logger* mutable_logger_impl() {
75 static Logger* impl_;
79 // Logger that does not log anything. It could be useful to "mute" the
81 class NullLogger : public Logger {