Skip to content

Commit

Permalink
Fix console color for Timestamp message type in ProxyConsoleFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
garrytrinder committed Dec 13, 2024
1 parent 76ba9c3 commit 2d79c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-proxy/Logging/ProxyConsoleFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ private static (ConsoleColor bg, ConsoleColor fg) GetMessageTypeColor(MessageTyp
MessageType.Mocked => (ConsoleColor.DarkMagenta, fgColor),
MessageType.Failed => (ConsoleColor.DarkRed, fgColor),
MessageType.Tip => (ConsoleColor.DarkBlue, fgColor),
MessageType.Timestamp => (ConsoleColor.Gray, fgColor),
MessageType.Timestamp => (bgColor, ConsoleColor.Gray),
_ => (bgColor, fgColor)
};
}
Expand Down

0 comments on commit 2d79c75

Please sign in to comment.