chromium/net/third_party/quiche/src/quiche/quic/platform/api/quic_logging.h

// Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef QUICHE_QUIC_PLATFORM_API_QUIC_LOGGING_H_
#define QUICHE_QUIC_PLATFORM_API_QUIC_LOGGING_H_

#include "quiche/common/platform/api/quiche_logging.h"

// Please note following QUIC_LOG are platform dependent:
// INFO severity can be degraded (to VLOG(1) or DVLOG(1)).
// Some platforms may not support QUIC_LOG_FIRST_N or QUIC_LOG_EVERY_N_SEC, and
// they would simply be translated to LOG.

#define QUIC_DVLOG
#define QUIC_DVLOG_IF
#define QUIC_DLOG
#define QUIC_DLOG_IF
#define QUIC_VLOG
#define QUIC_LOG
#define QUIC_LOG_FIRST_N
#define QUIC_LOG_EVERY_N_SEC
#define QUIC_LOG_IF

#define QUIC_PLOG

#define QUIC_DLOG_INFO_IS_ON
#define QUIC_LOG_INFO_IS_ON
#define QUIC_LOG_WARNING_IS_ON
#define QUIC_LOG_ERROR_IS_ON

#endif  // QUICHE_QUIC_PLATFORM_API_QUIC_LOGGING_H_