We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820562e commit 9f58cacCopy full SHA for 9f58cac
src/GitHooksCSharp/Commit/Validation/CommitMessageRegex.cs
@@ -57,10 +57,12 @@ static CommitMessageRegex()
57
FillSubjectRegex();
58
FillBodyRegex();
59
FillFooterRegex();
60
-
61
- Logger.LogWarning($"Subject Validation: {SubjectRegex}");
62
- Logger.LogWarning($"Body Validation: {BodyRegex}");
63
- Logger.LogWarning($"Footer Validation: {FooterRegex}");
+
+ Logger.BlankLine();
+ Logger.LogWarning("☢️ Generated regex to validate ☢️");
+ Logger.LogInfo($"Subject regex: {SubjectRegex}");
64
+ Logger.LogInfo($"Body regex: {BodyRegex}");
65
+ Logger.LogInfo($"Footer regex: {FooterRegex}");
66
}
67
68
/// <summary>
0 commit comments