The issue was that the 'quiet' argument on the ssh() methods for the two Providers was being called with quiet=True, which had been accidentally coded to override --verbose.
Now, the quiet flag (ssh -q) is sent by default, but if --verbose is specified, ssh -vv is used instead.
The issue was that the 'quiet' argument on the ssh() methods for the two Providers was being called with quiet=True, which had been accidentally coded to override --verbose.
Now, the quiet flag (ssh -q) is sent by default, but if --verbose is specified,
ssh -vv
is used instead.