utils.py

Sun, 21 Jan 2018 22:01:57 +0000

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sun, 21 Jan 2018 22:01:57 +0000
changeset 41
e2641cb9ca6d
parent 40
cfbeeec8cb82
permissions
-rw-r--r--

--no-tray command line option for running on non-MacOS systems

#
# Utility functions for Borgend
#

def log_exception(logger, err, detail=None):
    err_type=err.__class__.__name__
    if detail:
        logger.critical('%s:%s "%s"', str(detail), err_type, str(err))
    else:
        logger.critical('%s "%s"', err_type, str(err))

mercurial