Fix up text formatting as path's no longer get quoted

This commit is contained in:
Alexander Bock
2024-03-08 20:19:06 +01:00
parent fff6f8a627
commit 9a6fe47d17
119 changed files with 457 additions and 458 deletions
@@ -405,7 +405,7 @@ void RenderableFieldlines::loadSeedPointsFromTable() {
std::vector<RenderableFieldlines::Line> RenderableFieldlines::generateFieldlines() {
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldType)) {
LERROR(fmt::format(
"{} does not contain a '{}' key", KeyVectorField, KeyVectorFieldType
"'{}' does not contain a '{}' key", KeyVectorField, KeyVectorFieldType
));
return {};
}
@@ -426,14 +426,14 @@ std::vector<RenderableFieldlines::Line>
RenderableFieldlines::generateFieldlinesVolumeKameleon()
{
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldVolumeModel)) {
LERROR(fmt::format("{} does not name a model", KeyVectorField));
LERROR(fmt::format("'{}' does not name a model", KeyVectorField));
return {};
}
std::string model = _vectorFieldInfo.value<std::string>(KeyVectorFieldVolumeModel);
if (!_vectorFieldInfo.hasValue<std::string>(KeyVectorFieldFile)) {
LERROR(fmt::format("{} does not name a file", KeyVectorField));
LERROR(fmt::format("'{}' does not name a file", KeyVectorField));
return {};
}
std::string fileName = _vectorFieldInfo.value<std::string>(KeyVectorFieldFile);