On top of graylog, we probably want an internal logger that has a bit more customization than console.log()
console.log()
The text was updated successfully, but these errors were encountered:
We can have more detailed logs in a log file, while outputting simple logs in the console
Sorry, something went wrong.
Using winston js as our logger, with outputs to both console and a log file.
Notes:
logger.info('message', {object})
logger.info
logger.warn
logger.error
logger.debug
TODO: connect to graylog
Merge pull request #33 from Bechtel-Innovation-Design-Center/#9-logging
d2e89cd
#9 logging
Winston logging is done, we will probably not want to send all of the logs to graylog, so we need to figure out which logs we want to send
pan261
No branches or pull requests
On top of graylog, we probably want an internal logger that has a bit more customization than
console.log()
The text was updated successfully, but these errors were encountered: