Skip to content

Commit

Permalink
Merge pull request #26528 from GiudGiud/PR_fixup
Browse files Browse the repository at this point in the history
Silence excessive log after reading unique file
  • Loading branch information
cticenhour authored Jan 11, 2024
2 parents 9b1fbca + 2a4e730 commit 2758a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/userobjects/PropertyReadFile.C
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ PropertyReadFile::initialize()
_reader.setFileName(_prop_file_names[_current_file_index]);
readData();
}
else if (_current_file_index == _prop_file_names.size())
else if (_prop_file_names.size() > 1 && _current_file_index == _prop_file_names.size())
mooseInfo("Last file specified has been read. The file will no longer be updated.");
}

Expand Down

0 comments on commit 2758a79

Please sign in to comment.