##// END OF EJS Templates
logging: improve handling tween logging name
super-admin -
r4944:35dc5e2c default
parent child Browse files
Show More
@@ -45,13 +45,13 b' def vcs_detection_tween_factory(handler,'
45 45 request.environ[VCS_TYPE_KEY] = vcs_handler.SCM
46 46 request.vcs_call = vcs_handler.SCM
47 47
48 log.debug('Processing request with `%s` handler', handler)
48 log.debug('Processing request with `%s` handler', handler.__name__)
49 49 return handler(request)
50 50
51 51 # mark that we didn't detect an VCS, and we can skip detection later on
52 52 request.environ[VCS_TYPE_KEY] = VCS_TYPE_SKIP
53 53
54 log.debug('Processing request with `%s` handler', handler)
54 log.debug('Processing request with `%s` handler', handler.__name__)
55 55 return handler(request)
56 56
57 57 return vcs_detection_tween
General Comments 0
You need to be logged in to leave comments. Login now