Skip to content

Commit 70adc2f

Browse files
committed
update docs to mention logger
Signed-off-by: Grant Ramsay <seapagan@gmail.com>
1 parent ba63cb4 commit 70adc2f

File tree

6 files changed

+17
-22
lines changed

6 files changed

+17
-22
lines changed

BUGS.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ following advantages to starting your own from scratch :
9191
without needing to send username or password again, and should be done
9292
automatically by the Front-End.
9393
- A clean layout to help structure your project.
94+
- Uses the python logger for info/warning/error logging - tying transparently in
95+
to the `uvicorn` logger.
9496
- **A command-line admin tool**. This allows to configure the project metadata
9597
very easily, add users (and make admin), and run a development server. This
9698
can easily be modified to add your own functionality (for example bulk add

TODO.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@
3030
- add pagination to the user list endpoint. Implement this in a way that is
3131
generic and can be used for other custom endpoints too. The library
3232
'fastapi-pagination' is really good and performant.
33-
- remove all the `print` statements and replace with proper logging. Hook into
34-
the `uvicorn` logger for this, and offer alternative if uvicorn is not being
35-
used for some reason.
33+
- use an alternative loggier if uvicorn is not being used for some reason.
3634

3735
## Bugs/Annoyances
3836

39-
See [BUGS.md](BUGS.md) for a list of known bugs and annoyances.
37+
- If a user is deleted while logged in, the API returns a 500 (Internal Server
38+
Error).
4039

4140
## Auth
4241

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ following advantages to starting your own from scratch :
5151
automatically by the Front-End.
5252
- Full test coverage using `Pytest`.
5353
- A clean layout to help structure your project.
54+
- Uses the python logger for info/warning/error logging - tying transparently in
55+
to the `uvicorn` logger.
5456
- **A command-line admin tool**. This allows to configure the project metadata
5557
very easily, add users (and make admin), and run a development server. This
5658
can easily be modified to add your own functionality (for example bulk add

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ mdurl==0.1.2
6464
mergedeep==1.3.4
6565
mkdoc==0.1
6666
mkdocs==1.6.1
67-
mkdocs-autorefs==1.3.0
67+
mkdocs-autorefs==1.3.1
6868
mkdocs-get-deps==0.2.0
6969
mkdocs-git-revision-date-localized-plugin==1.3.0
7070
mkdocs-latest-git-tag-plugin==0.1.2
7171
mkdocs-material==9.5.50
7272
mkdocs-material-extensions==1.3.1
7373
mkdocs-minify-plugin==0.8.0
7474
mkdocs-swagger-ui-tag==0.6.11
75-
mkdocstrings==0.27.0
75+
mkdocstrings==0.28.1
7676
mkdocstrings-python==1.13.0
7777
mock==5.1.0
7878
mypy==1.14.1

uv.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)