mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
add more changelog and clean up test output
This commit is contained in:
parent
2d454c2654
commit
f43462da8c
@ -5,6 +5,7 @@
|
|||||||
- Windows crate update caused build and nul termination issues for DNS resolver
|
- Windows crate update caused build and nul termination issues for DNS resolver
|
||||||
- Fix for network key on the veilid-server command line
|
- Fix for network key on the veilid-server command line
|
||||||
- Strict verification for Ed25519 enabled
|
- Strict verification for Ed25519 enabled
|
||||||
|
- Domain separation for VLD0 signing and crypt
|
||||||
|
|
||||||
**Changes in Veilid 0.1.9**
|
**Changes in Veilid 0.1.9**
|
||||||
- SECURITY FIX
|
- SECURITY FIX
|
||||||
|
@ -98,7 +98,7 @@ cfg_if! {
|
|||||||
pub fn setup() {
|
pub fn setup() {
|
||||||
SETUP_ONCE.call_once(|| {
|
SETUP_ONCE.call_once(|| {
|
||||||
use tracing_subscriber::{filter, fmt, prelude::*};
|
use tracing_subscriber::{filter, fmt, prelude::*};
|
||||||
let mut filters = filter::Targets::new().with_default(filter::LevelFilter::TRACE);
|
let mut filters = filter::Targets::new().with_default(filter::LevelFilter::INFO);
|
||||||
for ig in DEFAULT_LOG_IGNORE_LIST {
|
for ig in DEFAULT_LOG_IGNORE_LIST {
|
||||||
filters = filters.with_target(ig, filter::LevelFilter::OFF);
|
filters = filters.with_target(ig, filter::LevelFilter::OFF);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user