QUICHE team | ded0351 | 2019-03-07 14:45:11 -0800 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef QUICHE_SPDY_PLATFORM_API_SPDY_LOGGING_H_ |
| 6 | #define QUICHE_SPDY_PLATFORM_API_SPDY_LOGGING_H_ |
| 7 | |
| 8 | #include "net/spdy/platform/impl/spdy_logging_impl.h" |
| 9 | |
| 10 | #define SPDY_LOG(severity) SPDY_LOG_IMPL(severity) |
| 11 | |
| 12 | #define SPDY_VLOG(verbose_level) SPDY_VLOG_IMPL(verbose_level) |
| 13 | |
| 14 | #define SPDY_DLOG(severity) SPDY_DLOG_IMPL(severity) |
| 15 | |
| 16 | #define SPDY_DLOG_IF(severity, condition) SPDY_DLOG_IF_IMPL(severity, condition) |
| 17 | |
| 18 | #define SPDY_DVLOG(verbose_level) SPDY_DVLOG_IMPL(verbose_level) |
| 19 | |
| 20 | #define SPDY_DVLOG_IF(verbose_level, condition) \ |
| 21 | SPDY_DVLOG_IF_IMPL(verbose_level, condition) |
| 22 | |
| 23 | #endif // QUICHE_SPDY_PLATFORM_API_SPDY_LOGGING_H_ |