fix(log): improve log output

This commit is contained in:
2018-08-05 23:20:32 +02:00
parent 5e1b378ac6
commit 8f61b5648f
2 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,7 @@
import * as plugins from './tstest.plugins';
import { coloredString as cs } from '@pushrocks/consolecolor';
export const TapPrefix = cs(`:::TAP:::`, 'pink', 'black');
export const TapErrorPrefix = cs(`!!!TAP PROTOCOL ERROR!!!`, 'red', 'black');
export const TapPrefix = cs(`::TAP::`, 'pink', 'black');
export const TapErrorPrefix = cs(` !!!TAP PROTOCOL ERROR!!! `, 'red', 'black');
export const TsTestPrefix = cs(`>>>TSTEST<<<`, 'pink', 'black');
export const TsTestPrefix = cs(`**TSTEST**`, 'pink', 'black');