X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=sfa%2Fmethods%2FGetCredential.py;h=9e83f45a0e7ce7e95fd88d1064ce8753d14e0002;hp=f7bc721a9c0c9c9605a8cf77fdbfc37596d8fc08;hb=HEAD;hpb=0a9902d2a55a0a9ac03601345c4284293669012b diff --git a/sfa/methods/GetCredential.py b/sfa/methods/GetCredential.py index f7bc721a..9e83f45a 100644 --- a/sfa/methods/GetCredential.py +++ b/sfa/methods/GetCredential.py @@ -1,5 +1,6 @@ from sfa.util.xrn import urn_to_hrn from sfa.util.method import Method +from sfa.util.sfalogging import logger from sfa.trust.credential import Credential @@ -15,7 +16,7 @@ class GetCredential(Method): @param cred credential object specifying rights of the caller @param type type of object (user | slice | node | authority ) - @return the string representation of a credential object + @return the string representation of a credential object """ interfaces = ['registry'] @@ -44,7 +45,7 @@ class GetCredential(Method): # log the call origin_hrn = Credential( string=valid_creds[0]).get_gid_caller().get_hrn() - self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s" % - (self.api.interface, origin_hrn, hrn, self.name)) + logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s" % + (self.api.interface, origin_hrn, hrn, self.name)) return self.api.manager.GetCredential(self.api, xrn, type, self.api.auth.client_gid.get_urn())