stdenv: change the logging in _allFlags to talkative

This commit is contained in:
Philip Taron 2024-08-05 16:18:14 -07:00
parent e844424e4f
commit d8fbb16219
No known key found for this signature in database

View file

@ -1050,7 +1050,7 @@ _allFlags() {
# don't have to be in the env attrset when `__structuredAttrs` is enabled.
export system pname name version
while IFS='' read -r varName; do
nixWarnLog "@${varName}@" "->" "${!varName}"
nixTalkativeLog "@${varName}@ -> ${!varName}"
args+=("--subst-var" "$varName")
done < <(awk 'BEGIN { for (v in ENVIRON) if (v ~ /^[a-z][a-zA-Z0-9_]*$/) print v }')
}