remove debug print statements

This commit is contained in:
2025-04-03 15:44:54 -05:00
parent 7cce8f6d8e
commit 0d944992fb
7 changed files with 1 additions and 20 deletions

View File

@@ -3,7 +3,6 @@
void MinimalApp::run() {
for(std::string m : runOrder) {
std::cout << "onLoad module: " << m << std::endl;
modules[m]->onLoad();
}

View File

@@ -14,7 +14,6 @@ class MinimalApp : public Archimedes::App {
void handleArgs(const int& argc, char* argv[]) {
if(argc > 1) {
for(int i = 1; i < argc; i++) {
std::cout << "Attempting to load: " << argv[i] << std::endl;
load(dynamicLoad(argv[i]));
}
} else {