Add reference to db_logger

db_logger is a logging implementation that writes log entries to a
database.  At the time of this writing, it supports PostgreSQL and
SQLite via the sqlx crate.
This commit is contained in:
Julio Merino 2022-04-12 18:07:44 -07:00
parent 3cc17c1c4f
commit 3d791f291d
2 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,7 @@ There are many available implementations to choose from, here are some of the mo
* [`slog-stdlog`](https://docs.rs/slog-stdlog/*/slog_stdlog/)
* [`android_log`](https://docs.rs/android_log/*/android_log/)
* [`win_dbg_logger`](https://docs.rs/win_dbg_logger/*/win_dbg_logger/)
* [`db_logger`](https://docs.rs/db_logger/*/db_logger/)
* For WebAssembly binaries:
* [`console_log`](https://docs.rs/console_log/*/console_log/)
* For dynamic libraries:

View File

@ -145,6 +145,7 @@
//! * [systemd-journal-logger]
//! * [android_log]
//! * [win_dbg_logger]
//! * [db_logger]
//! * For WebAssembly binaries:
//! * [console_log]
//! * For dynamic libraries: