mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-02-08 18:58:32 -05:00
debug
This commit is contained in:
parent
40288f41ba
commit
9b04fb1e4b
@ -60,7 +60,7 @@ mod veilid_layer_filter;
|
|||||||
mod wasm_helpers;
|
mod wasm_helpers;
|
||||||
|
|
||||||
pub use self::api_tracing_layer::ApiTracingLayer;
|
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_api::*;
|
||||||
pub use self::veilid_config::*;
|
pub use self::veilid_config::*;
|
||||||
pub use self::veilid_layer_filter::*;
|
pub use self::veilid_layer_filter::*;
|
||||||
@ -110,8 +110,8 @@ pub static DEFAULT_LOG_IGNORE_LIST: [&str; 23] = [
|
|||||||
"tungstenite",
|
"tungstenite",
|
||||||
"netlink_proto",
|
"netlink_proto",
|
||||||
"netlink_sys",
|
"netlink_sys",
|
||||||
"trust_dns_resolver",
|
"hickory_resolver",
|
||||||
"trust_dns_proto",
|
"hickory_proto",
|
||||||
"attohttpc",
|
"attohttpc",
|
||||||
"ws_stream_wasm",
|
"ws_stream_wasm",
|
||||||
"keyvaluedb_web",
|
"keyvaluedb_web",
|
||||||
|
@ -175,8 +175,14 @@ sealed class VeilidUpdate with _$VeilidUpdate {
|
|||||||
required ValueData valueData,
|
required ValueData valueData,
|
||||||
}) = VeilidUpdateValueChange;
|
}) = VeilidUpdateValueChange;
|
||||||
|
|
||||||
factory VeilidUpdate.fromJson(dynamic json) =>
|
factory VeilidUpdate.fromJson(dynamic json) {
|
||||||
_$VeilidUpdateFromJson(json as Map<String, dynamic>);
|
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",
|
"tungstenite",
|
||||||
"netlink_proto",
|
"netlink_proto",
|
||||||
"netlink_sys",
|
"netlink_sys",
|
||||||
"trust_dns_resolver",
|
"hickory_resolver",
|
||||||
"trust_dns_proto",
|
"hickory_proto",
|
||||||
"attohttpc",
|
"attohttpc",
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user