From 191996ed7ea58ea723e0636c450cdc7561939631 Mon Sep 17 00:00:00 2001 From: abdoulbari zakir <32519851+a-zakir@users.noreply.github.com> Date: Mon, 6 Nov 2023 00:28:12 -0800 Subject: [PATCH] Fix wrong log about solver-logs option (#1747) --- src/libs/antares/study/parameters.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/libs/antares/study/parameters.cpp b/src/libs/antares/study/parameters.cpp index 57735aab16..c686e6a3cc 100644 --- a/src/libs/antares/study/parameters.cpp +++ b/src/libs/antares/study/parameters.cpp @@ -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)