commit/galaxy-central: greg: Change log.warning to log.debug for messages regarding conflicting datatypes since recent changes in the Galaxy framework now result in job errors when using log.warning.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0b0018fa5d20/ Changeset: 0b0018fa5d20 User: greg Date: 2014-02-14 16:40:31 Summary: Change log.warning to log.debug for messages regarding conflicting datatypes since recent changes in the Galaxy framework now result in job errors when using log.warning. Affected #: 1 file diff -r 955e973c5b33eba4e0e68979a7c20c0bd0558e37 -r 0b0018fa5d20228bb7a8c0dc6566b8239873610d lib/galaxy/datatypes/registry.py --- a/lib/galaxy/datatypes/registry.py +++ b/lib/galaxy/datatypes/registry.py @@ -223,7 +223,7 @@ if extension in self.datatypes_by_extension: # Because of the way that the value of can_process_datatype was set above, we know that the value of # override is True. - self.log.warning( "Overriding conflicting datatype with extension '%s', using datatype from %s." % \ + self.log.debug( "Overriding conflicting datatype with extension '%s', using datatype from %s." % \ ( str( extension ), str( config ) ) ) if make_subclass: datatype_class = type( datatype_class_name, ( datatype_class, ), {} ) @@ -277,7 +277,7 @@ if not override: # Do not load the datatype since it conflicts with an existing datatype which we are not supposed # to override. - self.log.warning( "Ignoring conflicting datatype with extension '%s' from %s." % ( extension, config ) ) + self.log.debug( "Ignoring conflicting datatype with extension '%s' from %s." % ( extension, config ) ) # Load datatype sniffers from the config - we'll do this even if one or more datatypes were not properly processed in the config # since sniffers are not tightly coupled with datatypes. self.load_datatype_sniffers( root, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org