Skip to content

Commit

Permalink
Update Output.cs (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Oct 22, 2024
1 parent af0c6ab commit 8ba2b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/AiCommitMessage/Utility/Output.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static class Output
/// This is particularly useful for creating dynamic and visually appealing console output.
/// </remarks>
public static void InfoLine(string message, params object[] args) =>
AnsiConsole.MarkupLine(message, args);
AnsiConsole.MarkupLineInterpolated($"[green]{string.Format(message, args)}[/]");

public static void ErrorLine(string message) => ErrorLine(message, Array.Empty<object>());

Expand Down

0 comments on commit 8ba2b1c

Please sign in to comment.