commit/galaxy-central: dan: Change log.error to log.debug.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/8704a185d43e/ Changeset: 8704a185d43e User: dan Date: 2014-01-17 21:45:04 Summary: Change log.error to log.debug. Affected #: 1 file diff -r 82b5aef7a1da9e4129ba2a3920a54048642cc991 -r 8704a185d43ef02b0dd763a89a9b003df0326d90 lib/galaxy/tools/data/__init__.py --- a/lib/galaxy/tools/data/__init__.py +++ b/lib/galaxy/tools/data/__init__.py @@ -400,7 +400,7 @@ if fields not in self.data or allow_duplicates: self.data.append( fields ) else: - log.error( "Attempted to add fields (%s) to data table '%s', but this entry already exists and allow_duplicates is False.", fields, self.name ) + log.debug( "Attempted to add fields (%s) to data table '%s', but this entry already exists and allow_duplicates is False.", fields, self.name ) is_error = True else: log.error( "Attempted to add fields (%s) to data table '%s', but there were not enough fields specified ( %i < %i ).", fields, self.name, len( fields ), self.largest_index + 1 ) 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