Fixing wrong color

This commit is contained in:
Stamm 2019-04-05 09:26:26 -04:00
parent 8dec9e6d03
commit 0c9ff9d018
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/logging",
"version": "2.0.3",
"version": "2.0.4",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",

View File

@ -45,7 +45,7 @@ export class ConsoleAdapter implements Adapter {
formats += TerminalFormats.FgGreen;
break;
case Colors.YELLOW:
formats += TerminalFormats.FgRed;
formats += TerminalFormats.FgYellow;
break;
case Colors.BLUE:
formats += TerminalFormats.FgBlue;