We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f242699 commit b4cf124Copy full SHA for b4cf124
python/hopsworks_common/client/external.py
@@ -76,9 +76,9 @@ def __init__(
76
self._verify = self._get_verify(hostname_verification, trust_store_path)
77
self._hostname_verification = hostname_verification
78
self._hopsworks_ca_trust_store_path = trust_store_path
79
- _logger.info("Verify 1: %s", self._verify)
80
- _logger.info("Verify 2: %s", hostname_verification)
81
- _logger.info("Verify 3: %s", trust_store_path)
+ print(self._verify)
+ print(hostname_verification)
+ print(trust_store_path)
82
83
self._cert_key = None
84
self._cert_folder_base = cert_folder
0 commit comments