File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -467,11 +467,11 @@ declare class URLSearchParams {
467
467
* Interface for logging to stdout for
468
468
* [live log monitoring](https://developer.fastly.com/learning/compute/testing/#live-log-monitoring-in-your-console).
469
469
*
470
- * **Note**: relative to the `Console` builtin in browsers, this implementation is fairly basic for
471
- * now. It only supports a single argument, and does a basic `toString` operation on it. Use e.g.
472
- * `JSON.stringify` on the input to retain more information on internal object structure .
470
+ * **Note**: This implementation accepts any number of arguments. String representations of each object are appended
471
+ * together in the order listed and output. Unlike the `Console` built-in in browsers and Node.js, this implementation
472
+ * does not perform string substitution .
473
473
*
474
- * **Note**: Messages are prefixed with the respective logel level, starting with an upper-case letter, e.g. `"Log: "`.
474
+ * **Note**: Messages are prefixed with the respective log level, starting with an upper-case letter, e.g. `"Log: "`.
475
475
*/
476
476
declare interface Console {
477
477
log ( ...objects : any [ ] ) : void ;
You can’t perform that action at this time.
0 commit comments