make startup message normal output instead of debug message

This commit is contained in:
Fabian Posch 2024-01-17 17:51:12 -05:00
parent ea0c029dca
commit bfd8a76647

View file

@ -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);