reduce use of logger.exception() for non-critical exceptions
commitaab645431fcd24dc612e9e8baa06e73974424b15
authorStefan Kögl <stefan@skoegl.net>
Thu, 14 Nov 2013 18:42:14 +0000 (14 19:42 +0100)
committerStefan Kögl <stefan@skoegl.net>
Thu, 14 Nov 2013 18:42:14 +0000 (14 19:42 +0100)
tree68c91432b5393432400cc2e73191ef8329cf8727
parent01508d10cea5ba39709ada2a5ed0dcc826bed669
reduce use of logger.exception() for non-critical exceptions

logger.exception(msg) has been replaced with logger.warn(msg, exc_info=True)
    which achieves the same result with a different log level
mygpo/api/advanced/__init__.py