Skip to content

Commit

Permalink
Avoid extra end message tag when logging LOG_INIT (#12391)
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed May 7, 2024
1 parent 5f06291 commit 70d7a04
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -1484,7 +1484,10 @@ int check_nonlinear_solution(DATA *data, int printFailingSystems, int sysNumber)
warningStreamPrint(LOG_INIT, 0, "[%ld] Real %s(start=?, nominal=?)", j+1, modelInfoGetEquation(&data->modelData->modelDataXml, (nonlinsys[i]).equationIndex).vars[j]);
}
}
messageCloseWarning(LOG_INIT);
if(data->simulationInfo->initial)
{
messageCloseWarning(LOG_INIT);
}
return 1;
}
if(nonlinsys[i].solved == NLS_SOLVED_LESS_ACCURACY)
Expand Down

0 comments on commit 70d7a04

Please sign in to comment.