X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FUpdate.py;h=5daeb654c94e4895536221c52e22e632784b383a;hb=fd395e1944dcd49f10a4d5b27ce4983ad389fb96;hp=507509cd4bd53e8a7e13c27dde4d7e72274fd1f8;hpb=8e558be62ca1e048cedb76d6036d1acbfa827bd4;p=sfa.git diff --git a/sfa/methods/Update.py b/sfa/methods/Update.py index 507509cd..5daeb654 100644 --- a/sfa/methods/Update.py +++ b/sfa/methods/Update.py @@ -1,4 +1,5 @@ from sfa.util.method import Method +from sfa.util.sfalogging import logger from sfa.trust.credential import Credential @@ -14,7 +15,7 @@ class Update(Method): @param cred credential string specifying rights of the caller @param record a record dictionary to be updated - @return 1 if successful, faults otherwise + @return 1 if successful, faults otherwise """ interfaces = ['registry'] @@ -37,7 +38,7 @@ class Update(Method): # log 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.Update(self.api, record_dict)