vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit c384f9c0cacb1d8c27646fffd760d32e0d588c2b
parent afbfebf659baa4c121f520aa0167184b8e1249d5
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Mon, 25 Mar 2019 13:55:21 +0100

Set default log level to Info, we don't use debug anyway and it just fills the logs with other crates info.

Diffstat:
Msrc/main.rs | 12+++++-------
1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -79,13 +79,11 @@ fn init_logging() -> Result<(), fern::InitError> { message )) }) - .level(log::LevelFilter::Debug) - .level_for("hyper", log::LevelFilter::Warn) - .level_for("rustls", log::LevelFilter::Warn) - .level_for("handlebars", log::LevelFilter::Warn) - .level_for("ws", log::LevelFilter::Info) - .level_for("multipart", log::LevelFilter::Info) - .level_for("html5ever", log::LevelFilter::Info) + .level(log::LevelFilter::Info) + // Hide unknown certificate errors if using self-signed + .level_for("rustls::session", log::LevelFilter::Off) + // Hide failed to close stream messages + .level_for("hyper::server", log::LevelFilter::Warn) .chain(std::io::stdout()); if let Some(log_file) = CONFIG.log_file() {