Skip to content
Snippets Groups Projects
Commit 08ffeb67 authored by KyleKlenk's avatar KyleKlenk
Browse files

all files loaded will only print in debug mode

parent 409370d4
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ behavior file_access_actor(stateful_actor<file_access_state>* self, int startGRU
}
// Check if we have loaded all forcing files, if no read more data
if(self->state.filesLoaded <= self->state.numFiles) {
if(self->state.filesLoaded != self->state.numFiles) {
self->send(self, access_forcing_internal_v, currentFile + 1);
}
......@@ -57,7 +57,8 @@ behavior file_access_actor(stateful_actor<file_access_state>* self, int startGRU
self->send(self, access_forcing_internal_v, currentFile + 1);
} else {
aout(self) << "All Forcing Files Loaded \n";
if (debug)
aout(self) << "All Forcing Files Loaded \n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment