Skip to content

Commit

Permalink
Fixes #3753. use correct simulation logging flag option.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Mar 11, 2016
1 parent 1296d76 commit 4385f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/Simulation/SimulationDialog.cpp
Expand Up @@ -938,7 +938,7 @@ SimulationOptions SimulationDialog::createSimulationOptions()
QString loggingFlagName, loggingFlagValues;
loggingFlagName.append("-lv=");
if (mpLogDasslSolverCheckBox->isChecked())
loggingFlagValues.append("LOG_DDASRT");
loggingFlagValues.append("LOG_DASSL");
if (mpLogDebugCheckBox->isChecked())
loggingFlagValues.isEmpty() ? loggingFlagValues.append("LOG_DEBUG") : loggingFlagValues.append(",LOG_DEBUG");
if (mpLogDynamicStateSelectionCheckBox->isChecked())
Expand Down

0 comments on commit 4385f6e

Please sign in to comment.