Back to Sails

sails.log()

docs/reference/application/sails.log.md

12.12.20002.7 KB
Original Source

sails.log()

Log a message or some data at the "debug" log level using Sails' built-in logger.

usage
sails.log(...);

Usage

This function's usage is purposely very similar to Node's console.log(), but with a handful of extra features—namely support for multiple log levels with colorized, prefixed console output.

Note that standard console.log() conventions from Node.js apply:

  • takes an unlimited number of arguments, separated by commas
  • printf-style parameterization (à la util.format())
  • objects, dates, arrays, and most other data types are pretty-printed using the built-in logic in util.inspect() (e.g. you see { pet: { name: 'Hamlet' } } instead of [object Object].)
  • if you log an object with a custom inspect() method, that method will run automatically, and the string that it returns will be written to the console.

Example

javascript
var sum = +req.param('x') + +req.param('y');
sails.log();
sails.log('Hey %s, did you know that the sum of %d and %d is %d?', req.param('name'), +req.param('x'), +req.param('y'), sum);
sails.log('Bet you didn\'t know robots could do math, huh?');
sails.log();
sails.log('Anyways, here is a dictionary containing all the parameters I received in this request:', req.allParams());
sails.log('Until next time!');
return res.ok();

Notes

  • For a deeper conceptual exploration of logging in Sails, see concepts/logging.
  • Remember that, in addition to being exposed as an alternative to calling console.log directly, the built-in logger in Sails is called internally by the framework. The Sails logger can be configured, or completely overridden, using built-in log configuration settings (sails.config.log).
  • Keep in mind that, like any part of Sails, sails.log is completely optional. Most—but not all—Sails apps take advantage of the built-in logger: some users prefer to stick with console.log(), while others require() more feature-rich libraries like Winston. If you aren't sure what your app needs yet, start with the built-in logger and go from there.
<docmeta name="displayName" value="sails.log()"> <docmeta name="pageType" value="method">