We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When executing a batch process in a post-update the output included unnecessary lines about starting and completing each individual batch:
[notice] Update started: joinup_subscription_post_update_subscribe_to_community_content [notice] 1000 memberships updated. [ok] Update completed: joinup_subscription_post_update_subscribe_to_community_content [notice] Update started: joinup_subscription_post_update_subscribe_to_community_content [notice] 2000 memberships updated. [ok] Update completed: joinup_subscription_post_update_subscribe_to_community_content [notice] Update started: joinup_subscription_post_update_subscribe_to_community_content [notice] 3000 memberships updated. [ok] Update completed: joinup_subscription_post_update_subscribe_to_community_content
It would be easier to read if the redundant lines are removed:
[notice] Update started: joinup_subscription_post_update_subscribe_to_community_content [notice] 1000 memberships updated. [notice] 2000 memberships updated. [notice] 3000 memberships updated. [ok] Update completed: joinup_subscription_post_update_subscribe_to_community_content
The text was updated successfully, but these errors were encountered:
Awesome, thanks for working on this 👍
Sorry, something went wrong.
Reduce the useless verbosity of batch update output (#3372) (#4090)
24dbb49
* Provide a regression test (#3372) * Reduce useless verbosity of output (#3372) * Fix tests for Windows platforms.
pfrenssen
Successfully merging a pull request may close this issue.
When executing a batch process in a post-update the output included unnecessary lines about starting and completing each individual batch:
It would be easier to read if the redundant lines are removed:
The text was updated successfully, but these errors were encountered: