QUICHE team | 53f08a3 | 2019-04-15 14:47:31 -0400 | [diff] [blame] | 1 | // Copyright 2013 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_EPOLL_SERVER_PLATFORM_API_EPOLL_LOGGING_H_ |
| 6 | #define QUICHE_EPOLL_SERVER_PLATFORM_API_EPOLL_LOGGING_H_ |
| 7 | |
bnc | 5231ee2 | 2019-04-15 19:02:13 -0700 | [diff] [blame] | 8 | #include "net/tools/epoll_server/platform/impl/epoll_logging_impl.h" |
QUICHE team | 53f08a3 | 2019-04-15 14:47:31 -0400 | [diff] [blame] | 9 | |
| 10 | namespace epoll_server { |
| 11 | |
| 12 | #define EPOLL_LOG(severity) EPOLL_LOG_IMPL(severity) |
| 13 | #define EPOLL_VLOG(verbosity) EPOLL_VLOG_IMPL(verbosity) |
| 14 | #define EPOLL_DVLOG(verbosity) EPOLL_DVLOG_IMPL(verbosity) |
| 15 | #define EPOLL_PLOG(severity) EPOLL_PLOG_IMPL(severity) |
| 16 | |
| 17 | } // namespace epoll_server |
| 18 | |
| 19 | #endif // QUICHE_EPOLL_SERVER_PLATFORM_API_EPOLL_LOGGING_H_ |