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.

53 lines
2.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. # Usage
  2. ```js
  3. const { log, logt } = require("./log4jesus");
  4. ```
  5. ## log
  6. send log data to targets tagged with 'all'
  7. ```js
  8. log("use", ["exactly", "like"], `console.log ${420 * 69}`)
  9. ```
  10. ## logt
  11. send log data to only targets tagged with one of the tags in the array passed as a first arguement.
  12. first argument can be a string or array of strings.
  13. ```js
  14. // send only to targets with the 'verbose' tag
  15. logt("verbose", "Download progress:", downloadProgress / totalDownloads);
  16. // send to targets with the 'info' and 'error' tags
  17. logt(["error", "info"], "failed to parse json at: ", filePath)
  18. ```
  19. # Configuration
  20. log4jesus supports 3 types of targets for your log data:
  21. - file
  22. - console
  23. - http
  24. to determine what logs go to which target, edit the file `log4jesus.json`.
  25. there are three arrays defined in that file, associated with a key of either 'file', 'console' or 'http.
  26. in each case, the array should be an array of objects with a `tags` property (which should be a string or array of strings), as well as some other details about how this target should operate.
  27. ## 'file' details
  28. - path: optional string to the file to create
  29. ## 'console' details
  30. - stdstream: required value of 'stdout', 'stderr', or 'stdin'. It's not usually desired to make it 'stdin'.
  31. ## 'http' details
  32. our http object is an extension of the [nodejs http/https options object](https://nodejs.org/api/http.html#httprequesturl-options-callback). The object is passed faithfully to http/s.request, so anything you add that is valid for http/s.request will be valid here.
  33. Add a 'url' field to the object to specify the url for the request, which should include both the port and protocol - you usually won't need to set 'hostname' or 'host', or 'path' or 'port' or 'protocol'.
  34. You may commonly have to set the 'headers' object, and the 'content-type' header inside of that object, depending on your server. If it's not provided it's set to 'text/plain'.
  35. ## timestamps
  36. all logs are prefixed with an ISO 8601 timestamp. You can change this easily by editing the `timestamp` function, but for now it is not configurable from the config file.
  37. ## output formatting
  38. by default, we format output using `util.format`, the same way console output is normally formatted. You can change this if you want by editing the `formatOutput` function, but for now it is not configurable from the config file.