How to Log in SailsJS

前端 未结 2 1805
醉话见心
醉话见心 2021-02-13 04:57

What is the actual syntax to log in SailsJS?

Docs don\'t have anything, but found the following line in the site\'s roadmap

\"Pull out Sails.log (

相关标签:
2条回答
  • 2021-02-13 05:33

    In your controllers, models, services, and anywhere else that the sails global is available, you can log with one of:

    sails.log();
    sails.log.warn();
    sails.log.info();
    sails.log.debug();
    sails.log.error();
    sails.log.verbose();
    sails.log.silly();
    

    The logging level (that is, the level at which logs will be output to the console) is set in /config/log.js.

    0 讨论(0)
  • 2021-02-13 05:34

    To extend on the Scott Answer, dont forget to add the filePath: property to log.js file... otherwise it will not work :)

    So it should be something like:

    log: {
    level: 'info',
    maxSize: 1000,
    filePath: 'c://serverlogs/mylogfilename.log'
    

    Answer is changed based on Joseph question.

    0 讨论(0)
提交回复
热议问题