logger.cpp 598 B

1234567891011121314151617181920212223242526272829303132
  1. #include "logger.h"
  2. #include "qdebug.h"
  3. /**
  4. * @brief Logger::info
  5. * @param log
  6. */
  7. void Logger::info(QString log)
  8. {
  9. spdlog::stdout_logger_mt("console", true);
  10. spdlog::get("console")->info(log.toStdString());
  11. }
  12. /**
  13. * @brief Logger::critical
  14. * @param log
  15. */
  16. void Logger::critical(QString log)
  17. {
  18. spdlog::stdout_logger_mt("console", true);
  19. spdlog::get("console")->critical(log.toStdString());
  20. }
  21. /**
  22. * @brief Logger::error
  23. * @param log
  24. */
  25. void Logger::error(QString log)
  26. {
  27. spdlog::stdout_logger_mt("console", true);
  28. spdlog::get("console")->error(log.toStdString());
  29. }