OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/system_wrappers/include/logcat_trace_context.h" | 11 #include "webrtc/system_wrappers/include/logcat_trace_context.h" |
12 | 12 |
13 #include <android/log.h> | 13 #include <android/log.h> |
14 #include <assert.h> | 14 #include <assert.h> |
15 | 15 |
16 #include "webrtc/base/logging.h" | 16 #include "webrtc/rtc_base/logging.h" |
17 | 17 |
18 namespace webrtc { | 18 namespace webrtc { |
19 | 19 |
20 static android_LogPriority AndroidLogPriorityFromWebRtcLogLevel( | 20 static android_LogPriority AndroidLogPriorityFromWebRtcLogLevel( |
21 TraceLevel webrtc_level) { | 21 TraceLevel webrtc_level) { |
22 // NOTE: this mapping is somewhat arbitrary. StateInfo and Info are mapped | 22 // NOTE: this mapping is somewhat arbitrary. StateInfo and Info are mapped |
23 // to DEBUG because they are highly verbose in webrtc code (which is | 23 // to DEBUG because they are highly verbose in webrtc code (which is |
24 // unfortunate). | 24 // unfortunate). |
25 switch (webrtc_level) { | 25 switch (webrtc_level) { |
26 case webrtc::kTraceStateInfo: return ANDROID_LOG_DEBUG; | 26 case webrtc::kTraceStateInfo: return ANDROID_LOG_DEBUG; |
(...skipping 27 matching lines...) Expand all Loading... |
54 } | 54 } |
55 | 55 |
56 void LogcatTraceContext::Print(TraceLevel level, | 56 void LogcatTraceContext::Print(TraceLevel level, |
57 const char* message, | 57 const char* message, |
58 int length) { | 58 int length) { |
59 __android_log_print(AndroidLogPriorityFromWebRtcLogLevel(level), | 59 __android_log_print(AndroidLogPriorityFromWebRtcLogLevel(level), |
60 "WEBRTC", "%.*s", length, message); | 60 "WEBRTC", "%.*s", length, message); |
61 } | 61 } |
62 | 62 |
63 } // namespace webrtc | 63 } // namespace webrtc |
OLD | NEW |