Skip to content

Commit d96602b

Browse files
harmony7JakeChampion
authored andcommitted
Update comment
1 parent 43dba64 commit d96602b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sdk/js-compute/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -467,11 +467,11 @@ declare class URLSearchParams {
467467
* Interface for logging to stdout for
468468
* [live log monitoring](https://developer.fastly.com/learning/compute/testing/#live-log-monitoring-in-your-console).
469469
*
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.
473473
*
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: "`.
475475
*/
476476
declare interface Console {
477477
log(...objects: any[]): void;

0 commit comments

Comments
 (0)