logger.ini 789 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ##
  2. ## Logger settings file
  3. ##
  4. [General]
  5. # Specify loggers
  6. Loggers=FileLogger
  7. # Specify the default log text encoding. If not specified,
  8. # the codec will be based on a system locale.
  9. DefaultTextEncoding=
  10. ##
  11. ## FileLogger section
  12. ##
  13. # Specify the application log file name.
  14. FileLogger.Target=
  15. # Specify the layout of FileLogger.
  16. # %d : date-time
  17. # %p : priority (lowercase)
  18. # %P : priority (uppercase)
  19. # %t : thread ID (dec)
  20. # %T : thread ID (hex)
  21. # %i : PID (dec)
  22. # %I : PID (hex)
  23. # %m : log message
  24. # %n : newline code
  25. FileLogger.Layout="%d %5P [%t] %m%n"
  26. # Specify the date-time format of FileLogger, see also QDateTime
  27. # class reference.
  28. FileLogger.DateTimeFormat="yyyy-MM-dd hh:mm:ss"
  29. # Outputs the logs of equal or higher priority than this.
  30. FileLogger.Threshold=info