-
Notifications
You must be signed in to change notification settings - Fork 36.5k
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
scripted-diff: Use LogInfo over LogPrintf [WIP, NOMERGE, DRAFT] #29641
base: master
Are you sure you want to change the base?
Conversation
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. Code Coverage & BenchmarksFor details see: https://corecheck.dev/bitcoin/bitcoin/pulls/29641. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
concept ACK fae5751 |
I noticed that there are helper functions such as the following using the
Using this grep these might want to be addressed in a separate PR though |
19fc4eb
to
cfd07d1
Compare
.github/workflows/ci.yml
Outdated
@@ -109,7 +109,8 @@ jobs: | |||
run: | | |||
# A workaround for "The `brew link` step did not complete successfully" error. | |||
brew install --quiet python@3 || brew link --overwrite python@3 | |||
brew install --quiet coreutils ninja pkg-config gnu-getopt ccache boost libevent zeromq qt@5 qrencode | |||
brew unlink pkg-config | |||
brew install --quiet coreutils ninja gnu-getopt ccache boost libevent zeromq qt@5 qrencode |
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.
forgot to add pkgconf?
4191e4a
to
2751a24
Compare
Guix builds (on x86_64) [untrusted test-only build, possibly unsafe, not for production use]
|
-BEGIN VERIFY SCRIPT- sed -i 's/\<LogPrintf\>/LogInfo/g' $( git grep -l '\<LogPrintf\>' -- ./contrib/ ./src/ ./test/ ':(exclude)src/logging.h' ) -END VERIFY SCRIPT-
LogPrintf
has many issues:LogInfo
, according to the dev notes.