Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: webrtc/base/logging.h

Issue 1342963002: Do not print C++ line numbers for Java logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/base/logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/logging.h
diff --git a/webrtc/base/logging.h b/webrtc/base/logging.h
index 67a350b7519320844889ba5b483166a18c690230..739bf631283963847fd1f31f0e9f825b741b88ec 100644
--- a/webrtc/base/logging.h
+++ b/webrtc/base/logging.h
@@ -354,7 +354,7 @@ inline bool LogCheckLevel(LoggingSeverity sev) {
#define LOG_TAG(sev, tag) \
LOG_SEVERITY_PRECONDITION(sev) \
- rtc::LogMessage(__FILE__, __LINE__, sev, tag).stream()
+ rtc::LogMessage(NULL, 0, sev, tag).stream()
#define PLOG(sev, err) \
LOG_ERR_EX(sev, err)
« no previous file with comments | « no previous file | webrtc/base/logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698