From 8d3584b4362bfacb16d5d0fb018fb0bdd309b99a Mon Sep 17 00:00:00 2001 From: dzmitry-lahoda Date: Wed, 10 Apr 2024 15:42:56 +0100 Subject: [PATCH] logger --- mantis/node/src/bin/mantis.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mantis/node/src/bin/mantis.rs b/mantis/node/src/bin/mantis.rs index d4ca0f5..e322b92 100644 --- a/mantis/node/src/bin/mantis.rs +++ b/mantis/node/src/bin/mantis.rs @@ -20,7 +20,8 @@ use mantis_node::{ #[tokio::main] async fn main() { let args = MantisArgs::parsed(); - + env_logger::init(); + match &args.command { MantisCommands::Solve(x) => solve_orders(x).await, MantisCommands::Simulate(x) => {