Skip to content

Commit

Permalink
logs
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 3, 2024
1 parent 4381ace commit ecd3d28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ecd3d28

Please sign in to comment.