Related to https://g-research.github.io/fsharp-analyzers/analyzers/LoggingArgFuncNotFullyAppliedAnalyzer.html
Would it be interesting to also have an analyzer that detects a log call with a single interpolated string?
Instead of using the log message template.
let p = 42
// ❌
logger.Log(LogLevel.Information, $"foo %i{p}")
// ✅
logger.Log(LogLevel.Information, "foo {p}", p)
Would do you think @Smaug123?