Home | History | Annotate | Download | only in base

Lines Matching defs:LOG

11 //   LOG(...) an ostream target that can be used to send formatted
18 // There are several variations on the LOG macro which facilitate logging
21 // LOG(sev) logs the given stream at severity "sev", which must be a
24 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
26 // LOG_F(sev) Like LOG(), but includes the name of the current function.
27 // LOG_T(sev) Like LOG(), but includes the this pointer.
76 // LOG(LS_ERROR) << "LibraryFunc returned: "
94 // normal debug log, but should appear in diagnostic logs.
99 // LS_NONE: Don't log.
125 // Virtual sink interface that can receive log messages.
200 // These write out the actual log messages.
255 #ifndef LOG
258 // conditional log stream was stolen from google3/base/logging.h.
277 #define LOG(sev) \
289 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
290 #define LOG_T_F(sev) LOG(sev) << this << ": " << __PRETTY_FUNCTION__ << ": "
292 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
293 #define LOG_T_F(sev) LOG(sev) << this << ": " << __FUNCTION__ << ": "
311 #define LOG_T(sev) LOG(sev) << this << ": "
333 LOG(sev)
335 LOG(sev)
356 #endif // LOG