You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/quic
Jason Rhinelander b81f7025c9
Replace logging with oxen-logger
Replaces custom logging system with spdlog-based oxen logging.  This
commit mainly replaces the backend logging with the spdlog-based system,
but doesn't (yet) convert all the existing LogWarn, etc. to use the new
format-based logging.

New logging statements will look like:

    llarp::log::warning(cat, "blah: {}", val);

where `cat` should be set up in each .cpp or cluster of .cpp files, as
described in the oxen-logging README.

As part of spdlog we get fmt, which gives us nice format strings, where
are applied generously in this commit.

Making types printable now requires two steps:
- add a ToString() method
- add this specialization:

      template <>
      constexpr inline bool llarp::IsToStringFormattable<llarp::Whatever> = true;

This will then allow the type to be printed as a "{}" value in a
fmt::format string.  This is applied to all our printable types here,
and all of the `operator<<` are removed.

This commit also:
- replaces various uses of `operator<<` to ToString()
- replaces various uses of std::stringstream with either fmt::format or
  plain std::string
- Rename some to_string and toString() methods to ToString() for
  consistency (and to work with fmt)
- Replace `stringify(...)` and `make_exception` usage with fmt::format
  (and remove stringify/make_exception from util/str.hpp).
2 years ago
..
address.cpp Replace logging with oxen-logger 2 years ago
address.hpp Replace logging with oxen-logger 2 years ago
client.cpp Replace logging with oxen-logger 2 years ago
client.hpp Add missing client TCP accept/forwarding handlers 3 years ago
connection.cpp Replace logging with oxen-logger 2 years ago
connection.hpp Replace logging with oxen-logger 2 years ago
endpoint.cpp Crank oxen-mq to (1.2.)11; switch to oxen-encoding 2 years ago
endpoint.hpp add close_reason parameter to quic::Endpoint::close_connection defaulting to emtpy string 2 years ago
io_result.hpp WIP plainquic tunnels 3 years ago
null_crypto.cpp Replace logging with oxen-logger 2 years ago
null_crypto.hpp Increase null_iv to 8 bytes to avoid ngtcp2 stack corruption 3 years ago
packet.hpp WIP plainquic tunnels 3 years ago
server.cpp Replace logging with oxen-logger 2 years ago
server.hpp build paths faster and limit path builds at edge router instead of via a time counter for all edges 3 years ago
stream.cpp Replace logging with oxen-logger 2 years ago
stream.hpp Replace logging with oxen-logger 2 years ago
tunnel.cpp Replace logging with oxen-logger 2 years ago
tunnel.hpp initial commit for #1595 3 years ago