log.inline.h 308 B

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