components.go 977 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2021 IBM Corp and others.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v2.0
  6. * and Eclipse Distribution License v1.0 which accompany this distribution.
  7. *
  8. * The Eclipse Public License is available at
  9. * https://www.eclipse.org/legal/epl-2.0/
  10. * and the Eclipse Distribution License is available at
  11. * http://www.eclipse.org/org/documents/edl-v10.php.
  12. *
  13. * Contributors:
  14. * Seth Hoenig
  15. * Allan Stockdill-Mander
  16. * Mike Robertson
  17. */
  18. package mqtt
  19. type component string
  20. // Component names for debug output
  21. const (
  22. NET component = "[net] "
  23. PNG component = "[pinger] "
  24. CLI component = "[client] "
  25. DEC component = "[decode] "
  26. MES component = "[message] "
  27. STR component = "[store] "
  28. MID component = "[msgids] "
  29. TST component = "[test] "
  30. STA component = "[state] "
  31. ERR component = "[error] "
  32. ROU component = "[router] "
  33. )