Skip to content

Commit

Permalink
When printing analysis messages to the console, separate the textutal…
Browse files Browse the repository at this point in the history
… description from the rest with a ':' instead of '-'
  • Loading branch information
Numpsy committed Feb 18, 2024
1 parent 20d2c64 commit 3a4b910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FSharp.Analyzers.Cli/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ let printMessages (msgs: AnalyzerMessage list) =

msgLogger.Log(
severityToLogLevel[m.Severity],
"{0}({1},{2}): {3} {4} - {5}",
"{0}({1},{2}): {3} {4} : {5}",
m.Range.FileName,
m.Range.StartLine,
m.Range.StartColumn,
Expand Down

0 comments on commit 3a4b910

Please sign in to comment.