Skip to content

Commit

Permalink
Changed debugging output to stderr to actually print the progress to …
Browse files Browse the repository at this point in the history
…the screen on GitHub.
  • Loading branch information
Rory Barnes committed Oct 25, 2023
1 parent 0053852 commit 4ee7282
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -2166,10 +2166,11 @@ void WriteLog(BODY *body, CONTROL *control, FILES *files, MODULE *module,
double dDt, dTotTime;

/* Get derivatives */
fprintf(stderr,"In WriteLog.\n");
PropertiesAuxiliary(body, control, system, update);
printf("After PropsAux.\n");
fprintf(stderr,"After PropsAux.\n");
dDt = fdGetTimeStep(body, control, system, update, fnUpdate);
printf("After GetTimeStep.\n");
fprintf(stderr,"After GetTimeStep.\n");

if (iEnd == 0) {
sprintf(cTime, "Input");
Expand Down

0 comments on commit 4ee7282

Please sign in to comment.