From ecd3d28e1e72e6929b2a699642b5a37d4c1a8eeb Mon Sep 17 00:00:00 2001 From: Vincent Payet Date: Wed, 3 Jul 2024 14:31:12 +0200 Subject: [PATCH] logs --- .../antares/study/parts/short-term-storage/properties.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/antares/study/parts/short-term-storage/properties.cpp b/src/libs/antares/study/parts/short-term-storage/properties.cpp index 53028acc13..3239b115c7 100644 --- a/src/libs/antares/study/parts/short-term-storage/properties.cpp +++ b/src/libs/antares/study/parts/short-term-storage/properties.cpp @@ -177,14 +177,14 @@ bool Properties::validate() if (withdrawalEfficiency < 0) { - logs.warning() << "Property withdrawalEfficiency must be >= 0 " << "for short term storage " + logs.warning() << "Property efficiencyWithdrawal must be >= 0 " << "for short term storage " << name; withdrawalEfficiency = 0; } if (withdrawalEfficiency > 1) { - logs.warning() << "Property withdrawalEfficiency must be <= 1 " << "for short term storage " + logs.warning() << "Property efficiencyWithdrawal must be <= 1 " << "for short term storage " << name; withdrawalEfficiency = 1; }