From 9814b7c2c907e716ad75c32a48dc86376cc6d77e Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 29 Apr 2026 07:26:47 -0300 Subject: [PATCH] feat: add GENERAL BOTS ASCII logo on startup --- botserver/src/main_module/bootstrap.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/botserver/src/main_module/bootstrap.rs b/botserver/src/main_module/bootstrap.rs index 029712c1..6468f52c 100644 --- a/botserver/src/main_module/bootstrap.rs +++ b/botserver/src/main_module/bootstrap.rs @@ -29,7 +29,15 @@ pub fn init_logging_and_i18n(no_console: bool, no_ui: bool) { if no_console || no_ui { botlib::logging::init_compact_logger_with_style("info"); - println!("Starting General Bots {}...", env!("CARGO_PKG_VERSION")); + println!(r#" + ____ ____ _ _ _ ____ _ + / ___|| _ \ | | | | ___ ___| | __ | __ ) ___ _ __ __| | + | | _ | |_) | | |_| |/ _ \/ __| |/ / | _ \ / _ \| '__/ _` | + | |_| || _ < | _ | (_) \__ \ < | |_) | (_) | | | (_| | + \____||_| \_\___|_| |_|\___/|___/_|\_\ |____/ \___/|_| \__,_| + |_| +"#); + println!("Starting General Bots {}...", env!("CARGO_PKG_VERSION")); } let locales_path = if std::path::Path::new("./locales").exists() {