diff options
| author | Michael Merickel <michael@merickel.org> | 2011-08-21 00:02:24 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2011-08-21 00:03:32 -0500 |
| commit | accc4f4518ed6d204f3dea4579a3747f66e6999b (patch) | |
| tree | 0baeecd8c8ec8933993f03bbdaaf6637c227df90 | |
| parent | c8c9cced044c03b376d1e3698668a65493d0d390 (diff) | |
| download | pyramid-accc4f4518ed6d204f3dea4579a3747f66e6999b.tar.gz pyramid-accc4f4518ed6d204f3dea4579a3747f66e6999b.tar.bz2 pyramid-accc4f4518ed6d204f3dea4579a3747f66e6999b.zip | |
Updated routematch debugging to show the text description for predicates.
| -rw-r--r-- | pyramid/router.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/router.py b/pyramid/router.py index 248ab3b5b..746cf88cf 100644 --- a/pyramid/router.py +++ b/pyramid/router.py @@ -95,7 +95,7 @@ class Router(object): route.name, request.path_info, route.pattern, match, - route.predicates) + ', '.join([p.__text__ for p in route.predicates])) ) logger and logger.debug(msg) |
