console object
Exposes a set of methods used in scripts to write information to Microsoft Azure Mobile Services logs.
Members
This object contains the following members:
Methods
Method |
Description |
---|---|
log(formatString, obj1, obj2, ...) |
Writes logs at the info level. |
info (formatString, obj1, obj2, ...) |
Writes logs at the info level. |
warn(formatString, obj1, obj2, ...) |
Writes logs at the warning level. |
error(formatString, obj1, obj2, ...) |
Writes logs at the error level. |
Example
function insert(item, user, request) {
console.log("Inserting item '%j'.", item); // %j for 'JSON'
request.execute();
}
Remarks
The global console object exposes a subset of the methods on console object in Node.js. These methods are redirected to write to the logs for the mobile service.