log.inline.h 333 B

12345678910111213
  1. #ifndef AFUN_LOG_INLINE_H
  2. #define AFUN_LOG_INLINE_H
  3. #include "log.h"
  4. namespace aFuntool {
  5. inline aFuntool::Logger::Logger(LogFactory &factor, std::string id, LogLevel level, bool exit) noexcept
  6. : factor_{factor}, id_ {std::move(id)} {
  7. level_ = level;
  8. exit_ = exit;
  9. }
  10. }
  11. #endif //AFUN_LOG_INLINE_H