console object
Updated: June 3, 2015
Exposes a set of methods used in scripts to write information to Microsoft Azure Mobile Services logs.
This object contains the following members:
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();
}
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.
Show: