提交 6a7d6ea6 编写于 作者: R Rob Lourens

Don't log black text

上级 7edb8b1f
......@@ -114,9 +114,9 @@ export function log(entry: IRemoteConsoleLog, label: string): void {
// First arg is a string
if (typeof args[0] === 'string') {
if (topFrame && isOneStringArg) {
consoleArgs = [`%c[${label}] %c${args[0]} %c${topFrame}`, color('blue'), color('black'), color('grey')];
consoleArgs = [`%c[${label}] %c${args[0]} %c${topFrame}`, color('blue'), color(''), color('grey')];
} else {
consoleArgs = [`%c[${label}] %c${args[0]}`, color('blue'), color('black'), ...args.slice(1)];
consoleArgs = [`%c[${label}] %c${args[0]}`, color('blue'), color(''), ...args.slice(1)];
}
}
......@@ -139,4 +139,4 @@ export function log(entry: IRemoteConsoleLog, label: string): void {
function color(color: string): string {
return `color: ${color}`;
}
\ No newline at end of file
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册