JLogAllOutput.cpp 564 B

12345678910111213141516171819202122232425262728293031
  1. #include "JLogAllOutput.h"
  2. #include <qDebug>
  3. #include <CLog.h>
  4. void JLogAllOutput::cmd_debug(const std::string& strLog, int nIndex /*= -1*/)
  5. {
  6. #if 1
  7. qDebug() << strLog.c_str();
  8. PRINT_DEBUG(strLog.c_str(), nIndex);
  9. #endif // 0
  10. }
  11. void JLogAllOutput::cmd_Warning(const std::string& strLog, int nIndex /*= -1*/)
  12. {
  13. #if 1
  14. qWarning() << strLog.c_str();
  15. PRINT_DEBUG(strLog.c_str(), nIndex);
  16. #endif // 0
  17. }
  18. void JLogAllOutput::cmd_error(const std::string& strLog)
  19. {
  20. #if 1
  21. qDebug() << strLog.c_str();
  22. PRINT_DEBUG(strLog.c_str());
  23. #endif // 0
  24. }