@@ -112,7 +112,7 @@ def __init__(self, **options):
112
112
proxyInfo = getProxyInfo (disableVOMS = True )
113
113
if proxyInfo ["OK" ]:
114
114
os .environ ["X509_USER_PROXY" ] = proxyInfo ["Value" ]["path" ]
115
- sLog .debug ("X509_USER_PROXY not defined. Using value from proxyInfo" )
115
+ sLog .debug (f "X509_USER_PROXY not defined. Using { proxyInfo [ 'Value' ][ 'path' ] } " )
116
116
try :
117
117
try :
118
118
self ._client = Client ()
@@ -125,7 +125,7 @@ def __init__(self, **options):
125
125
dn = proxyInfo ["Value" ]["identity" ]
126
126
username = proxyInfo ["Value" ]["username" ]
127
127
self .account = username
128
- sLog .debug (f"Switching to another account based on DN " )
128
+ sLog .debug (f"Switching to account { username } mapped to proxy { dn } " )
129
129
130
130
try :
131
131
self ._client = Client (account = self .account )
@@ -151,7 +151,8 @@ def __init__(self, **options):
151
151
self .authHost = options .get ("AuthHost" , None )
152
152
self .caCertPath = Locations .getCAsLocation ()
153
153
try :
154
- sLog .info ("Logging in with a user proxy" )
154
+ sLog .debug (f"Logging in with a proxy located at: { self .proxyPath } " )
155
+ sLog .debug ("account: " , self .username )
155
156
sLog .debug ("rucio host: " , self .rucioHost )
156
157
sLog .debug ("auth host: " , self .authHost )
157
158
sLog .debug ("CA cert path: " , self .caCertPath )
0 commit comments