Commit b8e8b660f7bed998b0bc78fd69a174a91e3bdddf
1 parent
d61c1b7b6c
Exists in
master
debug
Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff
lib/partner.js
... | ... | @@ -26,6 +26,8 @@ function createXmlRpcClient(endpoint) { |
26 | 26 | path: partnerUrl.pathname |
27 | 27 | }; |
28 | 28 | |
29 | + logger.verbose('Creating XML-RPC client', clientOptions); | |
30 | + | |
29 | 31 | return partnerUrl.protocol === 'https' ? xmlrpc.createSecureClient(clientOptions) : xmlrpc.createClient(clientOptions); |
30 | 32 | } |
31 | 33 |