From: Michal MalĂ˝ Date: Sat, 7 Mar 2015 16:06:53 +0000 (+0100) Subject: Mark the error message about value index being out of range because this X-Git-Tag: 0.4a~4 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=688363466b0ae2fc884bfd6138f5acfea424b517;p=anyanka.git 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. --- 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); }