Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Format and remove unused KeyColor
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Jun 24, 2022
1 parent 8b52f55 commit 694fbe6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions neo-cli/CLI/MainService.Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ namespace Neo.CLI
{
partial class MainService
{
private static readonly ConsoleColorSet DebugColor = new ConsoleColorSet(ConsoleColor.Cyan);
private static readonly ConsoleColorSet InfoColor = new ConsoleColorSet(ConsoleColor.White);
private static readonly ConsoleColorSet WarningColor = new ConsoleColorSet(ConsoleColor.Yellow);
private static readonly ConsoleColorSet ErrorColor = new ConsoleColorSet(ConsoleColor.Red);
private static readonly ConsoleColorSet FatalColor = new ConsoleColorSet(ConsoleColor.Red);
private static readonly ConsoleColorSet KeyColor = new ConsoleColorSet(ConsoleColor.DarkGreen);
private static readonly ConsoleColorSet DebugColor = new(ConsoleColor.Cyan);
private static readonly ConsoleColorSet InfoColor = new(ConsoleColor.White);
private static readonly ConsoleColorSet WarningColor = new(ConsoleColor.Yellow);
private static readonly ConsoleColorSet ErrorColor = new(ConsoleColor.Red);
private static readonly ConsoleColorSet FatalColor = new(ConsoleColor.Red);

private readonly object syncRoot = new();
private bool _showLog = Settings.Default.Logger.ConsoleOutput;
Expand Down

0 comments on commit 694fbe6

Please sign in to comment.