##// END OF EJS Templates
exceptions: don't log error the lookup method errors. This happens so often we spam...
marcink -
r2908:76c75f2d default
parent child Browse files
Show More
@@ -205,7 +205,7 b' def map_vcs_exceptions(func):'
205 205 args = e.args
206 206 else:
207 207 args = [__traceback_info__ or 'unhandledException']
208 if __traceback_info__ and kind != 'unhandled':
208 if __traceback_info__ and kind not in ['unhandled', 'lookup']:
209 209 # for other than unhandled errors also log the traceback
210 210 # can be usefull for debugging
211 211 log.error(__traceback_info__)
General Comments 0
You need to be logged in to leave comments. Login now