Log.msg 457 B

12345678910111213141516171819
  1. ##
  2. ## Severity level constants
  3. ##
  4. byte DEBUG=1 #debug level
  5. byte INFO=2 #general level
  6. byte WARN=4 #warning level
  7. byte ERROR=8 #error level
  8. byte FATAL=16 #fatal/critical level
  9. ##
  10. ## Fields
  11. ##
  12. Header header
  13. byte level
  14. string name # name of the node
  15. string msg # message
  16. string file # file the message came from
  17. string function # function the message came from
  18. uint32 line # line the message came from
  19. string[] topics # topic names that the node publishes