From 5cdc2dc1006df5530d5086bd91b0c3bc92fb8053 Mon Sep 17 00:00:00 2001 From: m Date: Wed, 17 Jan 2024 03:22:06 -0600 Subject: [PATCH] re-add info prints --- src/client/component/gsc/script_loading.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/client/component/gsc/script_loading.cpp b/src/client/component/gsc/script_loading.cpp index 5a8946e7..265809ff 100644 --- a/src/client/component/gsc/script_loading.cpp +++ b/src/client/component/gsc/script_loading.cpp @@ -137,7 +137,7 @@ namespace gsc } } - console::debug("Loading custom gsc '%s.gsc'", real_name.data()); + console::info("Loading custom gsc '%s.gsc'", real_name.data()); try { @@ -172,6 +172,8 @@ namespace gsc loaded_scripts[file_name] = script_file_ptr; + console::info("Loaded custom gsc '%s.gsc'", real_name.data()); + return script_file_ptr; } catch (const std::exception& e) @@ -237,13 +239,13 @@ namespace gsc if (main_handle) { - console::debug("Loaded '%s::main'\n", name.data()); + console::info("Loaded '%s::main'\n", name.data()); main_handles[name] = main_handle; } if (init_handle) { - console::debug("Loaded '%s::init'\n", name.data()); + console::info("Loaded '%s::init'\n", name.data()); init_handles[name] = init_handle; } } @@ -369,7 +371,7 @@ namespace gsc { for (auto& function_handle : main_handles) { - console::debug("Executing '%s::main'\n", function_handle.first.data()); + console::info("Executing '%s::main'\n", function_handle.first.data()); game::RemoveRefToObject(game::Scr_ExecThread(function_handle.second, 0)); } } @@ -378,7 +380,7 @@ namespace gsc { for (auto& function_handle : init_handles) { - console::debug("Executing '%s::init'\n", function_handle.first.data()); + console::info("Executing '%s::init'\n", function_handle.first.data()); game::RemoveRefToObject(game::Scr_ExecThread(function_handle.second, 0)); } }