diff --git a/OpenSim/Common/IO.cpp b/OpenSim/Common/IO.cpp index 59fc759ee0..d3d5906a2c 100644 --- a/OpenSim/Common/IO.cpp +++ b/OpenSim/Common/IO.cpp @@ -508,7 +508,7 @@ stod(const std::string& __str, std::size_t* __idx) iss >> result; if (iss.fail()) { result = std::numeric_limits::quiet_NaN(); - log_warn("Encountered non-numeric string value: {} ; parsed value:{}",__str, result); + log_debug("Encountered non-numeric string value: {} ; parsed value:{}",__str, result); } return result; }