Skip to content

Commit

Permalink
Replace stringifyArgs with inspectArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Jul 13, 2020
1 parent b5dd8c1 commit e8fee5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/bootstrap
Expand Up @@ -139,7 +139,7 @@ let requestId;
const logger = (level) => {
return (...args) => {
const prefix = interpolate({ requestId, level })
const text = Deno[Deno.internal].stringifyArgs(args);
const text = Deno[Deno.internal].inspectArgs(args);
log((prefix + text).replace(/\n/g, '\r'));
}
}
Expand Down

0 comments on commit e8fee5a

Please sign in to comment.