OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 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 |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 uint32 before = Time(); | 188 uint32 before = Time(); |
189 // Must lock streams_ before accessing | 189 // Must lock streams_ before accessing |
190 CritScope cs(&crit_); | 190 CritScope cs(&crit_); |
191 for (StreamList::iterator it = streams_.begin(); it != streams_.end(); ++it) { | 191 for (StreamList::iterator it = streams_.begin(); it != streams_.end(); ++it) { |
192 if (severity_ >= it->second) { | 192 if (severity_ >= it->second) { |
193 it->first->OnLogMessage(str); | 193 it->first->OnLogMessage(str); |
194 } | 194 } |
195 } | 195 } |
196 uint32 delay = TimeSince(before); | 196 uint32 delay = TimeSince(before); |
197 if (delay >= warn_slow_logs_delay_) { | 197 if (delay >= warn_slow_logs_delay_) { |
198 rtc::LogMessage slow_log_warning(__FILE__, __LINE__, LS_WARNING); | 198 LogMessage slow_log_warning = |
| 199 rtc::LogMessage(__FILE__, __LINE__, LS_WARNING); |
199 // If our warning is slow, we don't want to warn about it, because | 200 // If our warning is slow, we don't want to warn about it, because |
200 // that would lead to inifinite recursion. So, give a really big | 201 // that would lead to inifinite recursion. So, give a really big |
201 // number for the delay threshold. | 202 // number for the delay threshold. |
202 slow_log_warning.warn_slow_logs_delay_ = UINT_MAX; | 203 slow_log_warning.warn_slow_logs_delay_ = UINT_MAX; |
203 slow_log_warning.stream() << "Slow log: took " << delay << "ms to write " | 204 slow_log_warning.stream() << "Slow log: took " << delay << "ms to write " |
204 << str.size() << " bytes."; | 205 << str.size() << " bytes."; |
205 } | 206 } |
206 } | 207 } |
207 | 208 |
208 uint32 LogMessage::LogStartTime() { | 209 uint32 LogMessage::LogStartTime() { |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 } | 542 } |
542 | 543 |
543 if (state) { | 544 if (state) { |
544 state->unprintable_count_[input] = consecutive_unprintable; | 545 state->unprintable_count_[input] = consecutive_unprintable; |
545 } | 546 } |
546 } | 547 } |
547 | 548 |
548 ////////////////////////////////////////////////////////////////////// | 549 ////////////////////////////////////////////////////////////////////// |
549 | 550 |
550 } // namespace rtc | 551 } // namespace rtc |
OLD | NEW |