From bfd8a76647b9d84bced993a6b0336f14fcd9abf9 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Wed, 17 Jan 2024 17:51:12 -0500 Subject: [PATCH] make startup message normal output instead of debug message --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 44e60aa..750613f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -158,7 +158,7 @@ int main (int argc, char **argv) { exit(1); } - DEBUG_PRINT("Starting actsim agent with " + std::to_string(jobs) + " worker threads."); + std::cout << "Starting actsim agent with " << std::to_string(jobs) << " worker threads." << std::endl; return start_agent(db_cred, jobs);