summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/firstapp.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index 8511647ac..1ca188d7e 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -42,6 +42,12 @@ server will simply serve up the text "Hello world!". If your application is
running on your local system, using ``http://localhost:8080/hello/world``
in a browser will show this result.
+Each time you visit a URL served by the application in a browser, a logging
+line will be emitted to the console displaying the hostname, the date, the
+request method and path, and some additional information. This output is
+done by the wsgiref server we've used to serve this application. It logs an
+"access log" in Apache combined logging format to the console.
+
Press ``Ctrl-C`` (or ``Ctrl-Break`` on Windows) to stop the application.
Now that we have a rudimentary understanding of what the application does,