ZIO
Python and C++ interface to ZeroMQ and Zyre
logging.hpp
Go to the documentation of this file.
1 #ifndef ZIO_LOGGING_HPP_SEEN
2 #define ZIO_LOGGING_HPP_SEEN
3 
4 #include <spdlog/spdlog.h>
5 
6 namespace zio {
7 
8  // Bring defalt loggers into zio::
9 
10  using spdlog::debug;
11  using spdlog::info;
12  using spdlog::warn;
13  using spdlog::error;
14  using spdlog::critical;
15 
16 }
17 
18 #endif
implementation of ZIO data flow protocol endpoints
Definition: actor.hpp:14