summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/router.py2
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)