🔍 Only do pip3 list when LOG_LEVEL >= DEBUG

This commit is contained in:
Gerber, Mike 2020-02-13 15:02:15 +01:00
parent 9f111ca362
commit 11a30892c5

View file

@ -148,7 +148,9 @@ main() {
}
pip3 list
if [ "$LOG_LEVEL" = "DEBUG" -o "$LOG_LEVEL" = "TRACE" ]; then
pip3 list
fi
main