X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Ftrust%2Fgid.py;h=a880b52d225efbd1f3e769448a65f1fa128793bf;hb=cb83b38f6586314d51e23dad227047d126bd4b76;hp=678c1a3f3ce58bb60a026efa3b9b1c0ca0d3cda1;hpb=9c3a451f7d42b349462d2c80f81644c5a150b2f2;p=sfa.git diff --git a/sfa/trust/gid.py b/sfa/trust/gid.py index 678c1a3f..a880b52d 100644 --- a/sfa/trust/gid.py +++ b/sfa/trust/gid.py @@ -30,7 +30,7 @@ import xmlrpclib import uuid -import sfa.util.sfalogging +from sfa.util.sfalogging import sfa_logger from sfa.trust.certificate import Certificate from sfa.util.namespace import * @@ -82,7 +82,7 @@ class GID(Certificate): Certificate.__init__(self, create, subject, string, filename) if subject: - sfa.util.sfalogging.logger.debug("Creating GID for subject: %s" % subject) + sfa_logger().debug("Creating GID for subject: %s" % subject) if uuid: self.uuid = int(uuid) if hrn: @@ -204,8 +204,7 @@ class GID(Certificate): if self.parent: # make sure the parent's hrn is a prefix of the child's hrn if not self.get_hrn().startswith(self.parent.get_hrn()): - #print self.get_hrn(), " ", self.parent.get_hrn() - raise GidParentHrn("This cert %s HRN doesnt start with parent HRN %s" % (self.get_hrn(), self.parent.get_hrn())) + raise GidParentHrn("This cert HRN %s doesnt start with parent HRN %s" % (self.get_hrn(), self.parent.get_hrn())) else: # make sure that the trusted root's hrn is a prefix of the child's trusted_gid = GID(string=trusted_root.save_to_string())