Implement log_level config option

This commit is contained in:
Daniel García
2019-03-25 14:12:41 +01:00
parent c384f9c0ca
commit 2475c36a75
3 changed files with 10 additions and 1 deletions

View File

@@ -277,6 +277,8 @@ make_config! {
extended_logging: bool, false, def, true;
/// Log file path
log_file: String, false, option;
/// Log level
log_level: String, false, def, "Info".to_string();
/// Enable DB WAL |> Turning this off might lead to worse performance, but might help if using bitwarden_rs on some exotic filesystems,
/// that do not support WAL. Please make sure you read project wiki on the topic before changing this setting.