From 3a253d8568b3c95488474d7008a264fec1ca09fe Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 6 Apr 2024 18:50:16 +0100 Subject: [PATCH] chore: Remove redundant logging --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 7144ba1..c18b6de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,16 +25,14 @@ fn main() { match commands.command { Command::Init => { - println!("Init command"); init::run(); } Command::Server(server) => match server { Server::Init => { - println!("Server Init command"); server::init(); } Server::Start => { - println!("Server Start command"); + server::start(); } }, }