blob: 94030a4934f3df56d5917ffcf8a17a005cd607a5 [file] [log] [blame]
// Copyright 2020 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.
#include "net/quic/quic_transport_error.h"
#include "base/strings/strcat.h"
namespace net {
std::string QuicTransportErrorToString(const QuicTransportError& error) {
std::string message =
ExtendedErrorToString(error.net_error, error.quic_error);
if (error.details == message)
return message;
return base::StrCat({message, " (", error.details, ")"});
}
std::ostream& operator<<(std::ostream& os, const QuicTransportError& error) {
os << QuicTransportErrorToString(error);
return os;
}
} // namespace net