Skip to content

Commit

Permalink
Improve debug suggestion message (#5300)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalyVPinchuk committed Sep 15, 2022
1 parent e02ac27 commit 65d52d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -69,7 +69,7 @@ internal class DetektMessageCollector(
if (messages > 0) {
warningPrinter(
"The BindingContext was created with $messages issues. " +
"Run detekt with --debug to see the error messages."
"Run detekt CLI with --debug or set `detekt { debug = true }` in Gradle to see the error messages."
)
}
}
Expand Down
Expand Up @@ -49,7 +49,7 @@ class DetektMessageCollectorSpec {
verify {
warningPrinter(
"The BindingContext was created with 1 issues. " +
"Run detekt with --debug to see the error messages."
"Run detekt CLI with --debug or set `detekt { debug = true }` in Gradle to see the error messages."
)
}
}
Expand All @@ -76,7 +76,7 @@ class DetektMessageCollectorSpec {
verify {
warningPrinter(
"The BindingContext was created with 1 issues. " +
"Run detekt with --debug to see the error messages."
"Run detekt CLI with --debug or set `detekt { debug = true }` in Gradle to see the error messages."
)
}
}
Expand Down

0 comments on commit 65d52d7

Please sign in to comment.