Skip to content

Commit

Permalink
Fix wrong log about solver-logs option (#1747)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-zakir authored Nov 6, 2023
1 parent 2b977e1 commit 191996e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/libs/antares/study/parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1486,11 +1486,9 @@ void Parameters::prepareForSimulation(const StudyLoadOptions& options)
{
logs.info() << " :: The problems will contain named variables and constraints";
}
// indicated that solver logs will be printed
if (namedProblems)
{
logs.info() << " :: Printing solver logs : " << (solverLogs ? "True" : "False");
}
// indicated whether solver logs will be printed
logs.info() << " :: Printing solver logs : " << (solverLogs ? "True" : "False");

}

void Parameters::resetPlaylist(uint nbOfYears)
Expand Down

0 comments on commit 191996e

Please sign in to comment.