blob: eed88e28869c963a9d9bca24ac265627ea72ad8b [file] [log] [blame]
// Copyright (c) 2016 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 NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_
#define NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_
#include "net/third_party/quic/platform/api/quic_logging.h"
#define QUIC_BUG_IMPL QUIC_LOG(DFATAL)
#define QUIC_BUG_IF_IMPL(condition) QUIC_LOG_IF(DFATAL, condition)
#define QUIC_PEER_BUG_IMPL QUIC_LOG(ERROR)
#define QUIC_PEER_BUG_IF_IMPL(condition) QUIC_LOG_IF(ERROR, condition)
#endif // NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_