summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-10-04 15:16:36 -0500
committerMichael Merickel <michael@merickel.org>2011-10-04 15:16:36 -0500
commit0078b214ca0d64a631674a95b002dfd82e2ba963 (patch)
tree88cc25ea8c3831e5742c14822035f15ff52664bf /docs/narr
parent206a7f6eb776ff91043ce9cf4627dad20f68b937 (diff)
downloadpyramid-0078b214ca0d64a631674a95b002dfd82e2ba963.tar.gz
pyramid-0078b214ca0d64a631674a95b002dfd82e2ba963.tar.bz2
pyramid-0078b214ca0d64a631674a95b002dfd82e2ba963.zip
Fixed the translogger example and link.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/logging.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/logging.rst b/docs/narr/logging.rst
index 3e39151a3..9625723ba 100644
--- a/docs/narr/logging.rst
+++ b/docs/narr/logging.rst
@@ -297,7 +297,7 @@ Request Logging with Paste's TransLogger
----------------------------------------
Paste provides the `TransLogger
-<http://pythonpaste.org/module-paste.translogger.html>`_ middleware for logging
+<http://pythonpaste.org/modules/translogger.html>`_ middleware for logging
requests using the `Apache Combined Log Format
<http://httpd.apache.org/docs/2.2/logs.html#combined>`_. TransLogger combined
with a FileHandler can be used to create an ``access.log`` file similar to
@@ -323,7 +323,7 @@ To this:
use = egg:MyProject
[filter:translogger]
- paste.filter_app_factory = egg:Paste#translogger
+ use = egg:Paste#translogger
setup_console_handler = False
[pipeline:main]