diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-02-27 14:03:12 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-03-02 20:44:08 +0100 |
| commit | b662c9ab34fc087e77f2c6cb40d66053f328f04e (patch) | |
| tree | 8da978b294e4db4386e06f1b253cf558a8a717f4 | |
| parent | 7a8b4497643714d4446c98e3261e4e55469d1019 (diff) | |
| download | mullvadvpn-b662c9ab34fc087e77f2c6cb40d66053f328f04e.tar.xz mullvadvpn-b662c9ab34fc087e77f2c6cb40d66053f328f04e.zip | |
Silence jsonrpc_core a bit
| -rw-r--r-- | mullvad-daemon/src/logging.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mullvad-daemon/src/logging.rs b/mullvad-daemon/src/logging.rs index cd63757f20..5e20f51bc0 100644 --- a/mullvad-daemon/src/logging.rs +++ b/mullvad-daemon/src/logging.rs @@ -23,6 +23,8 @@ pub const DATE_TIME_FORMAT_STR: &str = "%Y-%m-%d %H:%M:%S%.3f"; pub fn init_logger(log_level: log::LogLevelFilter, log_file: Option<&PathBuf>) -> Result<()> { let silenced_crates = [ "jsonrpc_core", + // jsonrpc_core does some logging under the "rpc" target as well. + "rpc", "tokio_core", "tokio_proto", "jsonrpc_ws_server", |
