From 868e8d88662ad5691212afc733e83f5de1c0979d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 15 Aug 2018 20:57:36 -0400 Subject: First pass at fetch() With help from Thomas Ghysels --- js/console.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/console.ts') diff --git a/js/console.ts b/js/console.ts index 48ecc6e7e..2eb5e27c0 100644 --- a/js/console.ts +++ b/js/console.ts @@ -112,7 +112,8 @@ export class Console { // tslint:disable-next-line:no-any warn(...args: any[]): void { - this.printFunc(`ERROR: ${stringifyArgs(args)}`); + // TODO Log to stderr. + this.printFunc(stringifyArgs(args)); } error = this.warn; -- cgit v1.2.3