I'm getting a `ValueError: invalid literal for int...
# general
p
I'm getting a
ValueError: invalid literal for int() with base 10: '21.0'
when trying to
pants run
a go binary target - can anyone point me to where I might get more context for the error? The
.pants.d/run-tracker
logs just have the same one line with no more context.
1
c
I not used the go backend, but if that error is from pants itself you could try
--print-stacktrace
or
-ldebug
👍 1
p
that's exactly what I was looking for, thanks!