shovel logs through api for flutter

This commit is contained in:
John Smith
2022-01-31 22:47:17 -05:00
parent 29b5ec5334
commit 65dabd09c7
11 changed files with 266 additions and 20 deletions

View File

@@ -4,6 +4,7 @@
#[macro_use]
extern crate alloc;
mod api_logger;
mod attachment_manager;
mod callback_state_machine;
mod connection_manager;
@@ -45,3 +46,14 @@ pub fn veilid_version() -> (u32, u32, u32) {
u32::from_str(env!("CARGO_PKG_VERSION_PATCH")).unwrap(),
)
}
pub static DEFAULT_LOG_IGNORE_LIST: [&'static str; 8] = [
"async_std",
"async_io",
"polling",
"rustls",
"async_tungstenite",
"tungstenite",
"netlink_proto",
"netlink_sys",
];