<#21863 Starting pants shows useless "Initializing...
# github-notifications
c
#21863 Starting pants shows useless "Initializing Nailgun pool ..." log lines Issue created by huonw Describe the bug It seems that Pants recently (between 2.21 and 2.22) started always logging two log lines about initializing Nailgun. These seem of low interest in most circumstances, and thus not worth telling the user about. Reproducer: cd $(mktemp -d) touch pants.toml echo "OK: 2.21" PANTS_VERSION=2.21.0 pants --no-pantsd version echo echo "OK: 2.22.0.dev3" PANTS_VERSION=2.22.0.dev3 pants --no-pantsd version echo echo "BUG: 2.22.0a0" PANTS_VERSION=2.22.0a0 pants --no-pantsd version echo echo "BUG: 2.22" PANTS_VERSION=2.22.0 pants --no-pantsd version Output:
Copy code
OK: 2.21
2.21.0

OK: 2.22.0.dev3
2.22.0.dev3

BUG: 2.22.0a0
13:03:39.51 [INFO] Initializing Nailgun pool for 16 processes...
13:03:42.55 [INFO] Initializing Nailgun pool for 16 processes...
2.22.0a0

BUG: 2.22
13:03:45.59 [INFO] Initializing Nailgun pool for 16 processes...
13:03:48.71 [INFO] Initializing Nailgun pool for 16 processes...
2.22.0
Pants version 2.22.0a0 and newer OS macOS Additional info N/A pantsbuild/pants