You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
817 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. module.exports = {
  2. "file": [
  3. {
  4. "tags": "httpErrors"
  5. }
  6. ],
  7. "console": [
  8. {
  9. "tags": "error",
  10. "stdstream": "stderr"
  11. },
  12. {
  13. "tags": "warn",
  14. "stdstream": "stdout"
  15. },
  16. {
  17. "tags": "info",
  18. "stdstream": "stdout"
  19. },
  20. {
  21. "tags": "verbose",
  22. "stdstream": "stdout"
  23. },
  24. {
  25. "tags": [ "all", "log" ],
  26. "stdstream": "stdout"
  27. }
  28. ],
  29. "http": [
  30. {
  31. "tags": "none",
  32. "url": process.env.MY_SERVER_URL,
  33. "errorTags": "httpErrors",
  34. "method": "POST",
  35. "headers": {
  36. "content-type": "text/plain"
  37. }
  38. }
  39. ]
  40. };