-
Notifications
You must be signed in to change notification settings - Fork 509
Move result cache output from debug to very verbose mode #3345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Any remarks? We switched to |
796d854
to
82f8844
Compare
@@ -159,7 +159,7 @@ public function restore(array $allAnalysedFiles, bool $debug, bool $onlyFiles, ? | |||
continue; | |||
} | |||
if (!is_file($extensionFile)) { | |||
if ($output->isDebug()) { | |||
if ($output->isVerbose()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be isVeryVerbose()
in places where you still left isVerbose()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed this one, thx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. Double checked, last one in verbose mode is the "Result cache restored", would you keep it?
Thank you. |
Since there are more and more
DiagnoseExtensions
with spammy output being added, we are switching from-vvv
to-vv
mode. But I think result cache info is still pretty important even when debug mode is not enabled, so I changed it.