mirror of
https://github.com/fluencelabs/trust-graph-test
synced 2025-04-01 05:21:24 +00:00
10 lines
232 B
Rust
10 lines
232 B
Rust
use fluence::WasmLoggerBuilder;
|
|
|
|
pub(crate) type Result<T> = std::result::Result<T, errors::HistoryError>;
|
|
|
|
pub fn main() {
|
|
WasmLoggerBuilder::new()
|
|
.with_log_level(log::Level::Info)
|
|
.build()
|
|
.unwrap();
|
|
} |