Skip to content

Commit e586143

Browse files
Update CONTRIBUTING.md
1 parent f69b0f0 commit e586143

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ app.run()
6464

6565
**Note:** Import from `view` internally _does not_ work when using `src.view`. Instead, your imports inside of view.py should look like `from .foo import bar`. For example, if you wanted to import `view.routing.get` from `src/view/app.py`, your import would look like `from .routing import get`
6666

67-
For debugging purposes, you're also going to want to disable `fancy` and `hijack` in the configuration:
67+
For debugging purposes, you're also going to want to disable `fancy` and `server_logger` in the configuration:
6868

6969
```toml
7070
[log]
7171
fancy = false
72-
hijack = false
72+
server_logger = true
7373
```
7474

75-
These settings will stop view.py's fancy output from showing, as well as stopping the hijack of the `uvicorn` logger, and you'll get the raw `uvicorn` output.
75+
These settings will stop view.py's fancy output from showing, as well as stopping the hijack of the ASGI logger, and you'll get the raw output.
7676

7777
## Writing Tests
7878

0 commit comments

Comments
 (0)