view util/Filters.py @ 71:b724e559907e draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 92e6dc28cbc0253b964b2cf594320042d8cd9524-dirty
author yating-l
date Wed, 27 Sep 2017 11:15:44 -0400
parents 4ca7cbf2d9b8
children
line wrap: on
line source

import logging

class TraceBackFormatter(logging.Formatter):
    def format(self, record):
        # If the log has some Exception text, we don't display them
        s = super(TraceBackFormatter, self).format(record)
        if record.exc_text or record.exc_info:
            s = record.message
        return s