File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -492,6 +492,7 @@ def login_gui(self, verbose=False):
492
492
"""
493
493
try :
494
494
log .info ("Login to Euclid TAP server" )
495
+ log .info (f"Euclid TAP server url: { self ._TapPlus__getconnhandler ().get_host_url ()} " )
495
496
TapPlus .login_gui (self , verbose = verbose )
496
497
except HTTPError as err :
497
498
log .error ('Error logging in TAP server: %s' % (str (err )))
@@ -502,6 +503,7 @@ def login_gui(self, verbose=False):
502
503
503
504
try :
504
505
log .info ("Login to Euclid data server" )
506
+ log .info (f"Euclid data server url: { self .__eucliddata ._TapPlus__getconnhandler ().get_host_url ()} " )
505
507
self .__eucliddata .login (user = tap_user , password = tap_password , verbose = verbose )
506
508
except HTTPError as err :
507
509
log .error ('Error logging in data server: %s' % (str (err )))
@@ -510,6 +512,7 @@ def login_gui(self, verbose=False):
510
512
511
513
try :
512
514
log .info ("Login to Euclid cutout server" )
515
+ log .info (f"Euclid cutout server url: { self .__euclidcutout ._TapPlus__getconnhandler ().get_host_url ()} " )
513
516
self .__euclidcutout .login (user = tap_user , password = tap_password , verbose = verbose )
514
517
except HTTPError as err :
515
518
log .error ('Error logging in cutout server: %s' % (str (err )))
You can’t perform that action at this time.
0 commit comments