logging.h 403 B

123456789101112
  1. #ifndef LOGGING_H
  2. #define LOGGING_H
  3. #include <boost/log/trivial.hpp>
  4. #include <iomanip>
  5. #include "utils.h"
  6. #define BUGZ_LOG(severity) \
  7. BOOST_LOG_TRIVIAL(severity) \
  8. << "(" << std::setw(15) << trim_path(__FILE__) << ":" << std::setw(4) \
  9. << std::left << __LINE__ << ") "
  10. #endif