Skip to content

Commit

Permalink
Merge pull request #223 from bls337/main
Browse files Browse the repository at this point in the history
fix error message on DeviceBase
  • Loading branch information
bls337 authored Oct 27, 2023
2 parents 3e6a8c5 + 67d5480 commit 1d1c6bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public int getPropertyInt(final String propertyName) {
try {
result = Integer.parseInt(core_.getProperty(deviceName_, propertyName));
} catch (Exception e) {
studio_.logs().logError("Could not get the \"" + propertyName + "\" property as a float.");
studio_.logs().logError("Could not get the \"" + propertyName + "\" property as an integer.");
}
return result;
}
Expand Down

0 comments on commit 1d1c6bc

Please sign in to comment.