Hi everyone, I was wondering if there was a way to...
# general
m
Hi everyone, I was wondering if there was a way to show pip's verbose output during locking (or else inspect the pex log file indicated by
-ldebug
)? I currently do not see any log file after locking with
PEX_VERBOSITY=9 ./pants --keep-sandboxes=always -ldebug generate-lockfiles
and then `cd`ing to the directory mentioned in the debug console logs.
f
there is a `--pex-verbosity`Pants option to set PEX_VERBOSITY when invoking pex
so try
--pex-verbosity=9
🚀 1
e
Tom's advice should net you the download log indirectly, and it probably got lost in the noise yesterday @melodic-carpenter-39613, but you can add
--preserve-pip-download-log
when using the
__run.sh
in a sandbox to get the log in full and by itself if needed: https://pantsbuild.slack.com/archives/C046T6T9U/p1675861876504459?thread_ts=1675847883.907949&cid=C046T6T9U
m
Thanks @fast-nail-55400 and @enough-analyst-54434 - both good to know!