Skip to content

Commit

Permalink
build fixes from refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyOThan committed Aug 10, 2024
1 parent 1d84c5f commit 744b3bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RasterPropMonitor/Core/ResourceDataStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public double ListSYSElement(string resourceName, ResourceProperty valueType, bo
}
else
{
JUtil.LogErrorMessage(this, "ListElement({1}) threw trapped exception {0}", e, resourceName);
JUtil.LogErrorMessage(this, "ListElement({0}) resource not found", resourceName);
return double.NaN;
}
}
Expand All @@ -275,7 +275,7 @@ public double ListElement(string resourceName, ResourceProperty valueType, bool
}
else
{
JUtil.LogErrorMessage(this, "Error finding {0}-{2}: {1}", resourceName, e, valueType);
JUtil.LogErrorMessage(this, "Error finding {0}-{2}", resourceName, valueType);
return 0;
}
}
Expand Down

0 comments on commit 744b3bc

Please sign in to comment.