@@ -40,15 +40,15 @@ pip3 install --upgrade usagelogger
40
40
41
41
``` python
42
42
from aiohttp import web
43
- from usagelogger.aiohttp import HttpLoggerForAIOHTTP
43
+ from usagelogger.middleware. aiohttp import HttpLoggerForAIOHTTP
44
44
45
45
async def test (request ):
46
46
return web.Response(text = " Hello" )
47
47
48
48
app = web.Application(
49
49
middlewares = [
50
50
HttpLoggerForAIOHTTP(
51
- url = " http://localhost:4001 /message" , rules = " include debug"
51
+ url = " http://localhost:7701 /message" , rules = " include debug"
52
52
)
53
53
]
54
54
)
@@ -66,7 +66,7 @@ First edit `settings.py` to register middleware, like this:
66
66
67
67
``` python
68
68
MIDDLEWARE = [
69
- " usagelogger.django.HttpLoggerForDjango" , # Always on the top
69
+ " usagelogger.middleware. django.HttpLoggerForDjango" , # Always on the top
70
70
" django.middleware..." ,
71
71
]
72
72
```
@@ -75,7 +75,7 @@ Then add a new section to `settings.py` for logging configuration, like this:
75
75
76
76
``` python
77
77
USAGELOGGER = {
78
- ' url' : ' http://localhost:4001 /message' ,
78
+ ' url' : ' http://localhost:7701 /message' ,
79
79
' rules' : ' include debug'
80
80
}
81
81
```
@@ -86,12 +86,12 @@ USAGELOGGER = {
86
86
87
87
``` python
88
88
from flask import Flask
89
- from usagelogger.flask import HttpLoggerForFlask
89
+ from usagelogger.middleware. flask import HttpLoggerForFlask
90
90
91
91
app = Flask(__name__ )
92
92
93
93
app.wsgi_app = HttpLoggerForFlask( # type: ignore
94
- app = app.wsgi_app, url = " http://localhost:4001 /message" , rules = " include debug"
94
+ app = app.wsgi_app, url = " http://localhost:7701 /message" , rules = " include debug"
95
95
)
96
96
97
97
@app.route (" /" )
@@ -108,7 +108,7 @@ app.run(debug=True)
108
108
``` python
109
109
from usagelogger import resurface
110
110
111
- s = resurface.Session(url = " http://localhost:4001 /message" , rules = " include debug" )
111
+ s = resurface.Session(url = " http://localhost:7701 /message" , rules = " include debug" )
112
112
s.get(... )
113
113
```
114
114
0 commit comments