From 688363466b0ae2fc884bfd6138f5acfea424b517 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sat, 7 Mar 2015 17:06:53 +0100 Subject: [PATCH] Mark the error message about value index being out of range because this can be triggered by rounding errors on the far end of the chart and it is handled correctly. --- signalcontroller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signalcontroller.cpp b/signalcontroller.cpp index f1ea0eb..d1ffc55 100644 --- a/signalcontroller.cpp +++ b/signalcontroller.cpp @@ -231,7 +231,7 @@ Signal::TimeValuePair SignalController::getXYValues(const double x) { size_t idx = relToIdx(x); if (idx >= m_signal->count()-1) { - Logger::log(Logger::Level::CRITICAL, ME_SENDER_STR, __QFUNC__ + " idx value " + QString::number(idx) + " out of bounds!"); + Logger::log(Logger::Level::DEBUG, ME_SENDER_STR, __QFUNC__ + QString(" idx value %1 out of bounds").arg(idx)); return Signal::TimeValuePair(0, 0); } -- 2.43.5