Lines Matching defs:LOG
28 // LOG(...) an ostream target that can be used to send formatted
35 // There are several variations on the LOG macro which facilitate logging
38 // LOG(sev) logs the given stream at severity "sev", which must be a
41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
43 // LOG_F(sev) Like LOG(), but includes the name of the current function.
91 // LOG(LS_ERROR) << "LibraryFunc returned: "
273 #ifndef LOG
296 #define LOG(sev) \
308 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
310 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
332 #define LOG(sev) \
336 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
381 #endif // LOG