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 (
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.