diff --git a/src/GitHooksCSharp/Commit/Validation/CommitMessageRegex.cs b/src/GitHooksCSharp/Commit/Validation/CommitMessageRegex.cs index c010edd..de24d0b 100644 --- a/src/GitHooksCSharp/Commit/Validation/CommitMessageRegex.cs +++ b/src/GitHooksCSharp/Commit/Validation/CommitMessageRegex.cs @@ -57,10 +57,12 @@ static CommitMessageRegex() FillSubjectRegex(); FillBodyRegex(); FillFooterRegex(); - - Logger.LogWarning($"Subject Validation: {SubjectRegex}"); - Logger.LogWarning($"Body Validation: {BodyRegex}"); - Logger.LogWarning($"Footer Validation: {FooterRegex}"); + + Logger.BlankLine(); + Logger.LogWarning("☢️ Generated regex to validate ☢️"); + Logger.LogInfo($"Subject regex: {SubjectRegex}"); + Logger.LogInfo($"Body regex: {BodyRegex}"); + Logger.LogInfo($"Footer regex: {FooterRegex}"); } ///