mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
debug
This commit is contained in:
parent
40288f41ba
commit
9b04fb1e4b
@ -60,7 +60,7 @@ mod veilid_layer_filter;
|
||||
mod wasm_helpers;
|
||||
|
||||
pub use self::api_tracing_layer::ApiTracingLayer;
|
||||
pub use self::core_context::{api_startup, api_startup_json, api_startup_config, UpdateCallback};
|
||||
pub use self::core_context::{api_startup, api_startup_config, api_startup_json, UpdateCallback};
|
||||
pub use self::veilid_api::*;
|
||||
pub use self::veilid_config::*;
|
||||
pub use self::veilid_layer_filter::*;
|
||||
@ -110,8 +110,8 @@ pub static DEFAULT_LOG_IGNORE_LIST: [&str; 23] = [
|
||||
"tungstenite",
|
||||
"netlink_proto",
|
||||
"netlink_sys",
|
||||
"trust_dns_resolver",
|
||||
"trust_dns_proto",
|
||||
"hickory_resolver",
|
||||
"hickory_proto",
|
||||
"attohttpc",
|
||||
"ws_stream_wasm",
|
||||
"keyvaluedb_web",
|
||||
|
@ -175,8 +175,14 @@ sealed class VeilidUpdate with _$VeilidUpdate {
|
||||
required ValueData valueData,
|
||||
}) = VeilidUpdateValueChange;
|
||||
|
||||
factory VeilidUpdate.fromJson(dynamic json) =>
|
||||
_$VeilidUpdateFromJson(json as Map<String, dynamic>);
|
||||
factory VeilidUpdate.fromJson(dynamic json) {
|
||||
try {
|
||||
return _$VeilidUpdateFromJson(json as Map<String, dynamic>);
|
||||
} catch (e) {
|
||||
print('VeilidUpdateFromJson failed: $e');
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////////////
|
||||
|
@ -21,7 +21,7 @@ pub static DEFAULT_LOG_IGNORE_LIST: [&str; 21] = [
|
||||
"tungstenite",
|
||||
"netlink_proto",
|
||||
"netlink_sys",
|
||||
"trust_dns_resolver",
|
||||
"trust_dns_proto",
|
||||
"hickory_resolver",
|
||||
"hickory_proto",
|
||||
"attohttpc",
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user