From 99f5a0bf829a26833e1c2d9fac9d2cb2cb48c4e0 Mon Sep 17 00:00:00 2001 From: AlexBeattie42 <30098201+alexbeattie42@users.noreply.github.com> Date: Mon, 27 Jan 2025 14:12:04 +0200 Subject: [PATCH] Decrease log level for NaN parsing --- OpenSim/Common/IO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }