Home | History | Annotate | Download | only in include

Lines Matching defs:LOG

12 // It is a thin wrapper around WEBRTC_TRACE, maintaining the libjingle log
18 // impact of adding a new LS_INFO log. If it will be logged at anything
20 // preferably, do not log at all.
22 // LOG(...) an ostream target that can be used to send formatted
29 // There are several variations on the LOG macro which facilitate logging
32 // LOG(sev) logs the given stream at severity "sev", which must be a
35 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
37 // LOG_F(sev) Like LOG(), but includes the name of the current function.
53 // normal debug log, but should appear in diagnostic logs.
82 #ifndef LOG
84 // conditional log stream was stolen from google3/base/logging.h.
111 #define LOG(sev) \
123 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
125 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
128 #endif // LOG