In ktlint 0.48.0 it seems `--log-level` is not respected: ``` $ echo "class Foo { fun foo() {} }" | ktlint --log-level=fatal -F --stdin 2>/dev/null 08:48:35.907 [main] INFO com.pinterest.ktlint.internal.KtlintCommandLine - Enable default patterns [**/*.kt, **/*.kts] class Foo { fun foo() {} } ``` As a workaround I'm using a similar grep trick to the above, but if would be nice if we could suppress this and/or log to stderr. _Originally posted by @alex-shinn in https://github.com/pinterest/ktlint/issues/1652#issuecomment-1365007742_