commit/galaxy-central: natefoo: Log failures when setting peek.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/febd76229248/ Changeset: febd76229248 User: natefoo Date: 2013-10-18 17:43:01 Summary: Log failures when setting peek. Affected #: 1 file diff -r 503d939099fcd8913202300b83221a8d3269b9f9 -r febd7622924885dd0729ce00924289cc1f0eb741 lib/galaxy/datatypes/tabular.py --- a/lib/galaxy/datatypes/tabular.py +++ b/lib/galaxy/datatypes/tabular.py @@ -227,6 +227,7 @@ out.append( '</th>' ) out.append( '</tr>' ) except Exception, exc: + log.exception( 'make_html_peek_header failed on HDA %s' % dataset.id ) raise Exception, "Can't create peek header %s" % str( exc ) return "".join( out ) @@ -254,6 +255,7 @@ out.append( '<td>%s</td>' % escape( elem ) ) out.append( '</tr>' ) except Exception, exc: + log.exception( 'make_html_peek_rows failed on HDA %s' % dataset.id ) raise Exception, "Can't create peek rows %s" % str( exc ) return "".join( out ) 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