From 11d29d02c565151821fa045cc67522b06cc94c75 Mon Sep 17 00:00:00 2001 From: "T. van der Zwan" Date: Thu, 25 Sep 2014 22:31:20 +0200 Subject: [PATCH] Added debug statement to standard out Former-commit-id: daaeb2a07931942bbeaf272775da81902169ad04 --- libsrc/hyperion/LinearColorSmoothing.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libsrc/hyperion/LinearColorSmoothing.cpp b/libsrc/hyperion/LinearColorSmoothing.cpp index 888b1c2f..da932e9e 100644 --- a/libsrc/hyperion/LinearColorSmoothing.cpp +++ b/libsrc/hyperion/LinearColorSmoothing.cpp @@ -20,6 +20,8 @@ LinearColorSmoothing::LinearColorSmoothing( _timer.setInterval(_updateInterval); connect(&_timer, SIGNAL(timeout()), this, SLOT(updateLeds())); + + std::cout << "Created linear-smoothing(interval_ms=" << _updateInterval << ";settlingTime_ms=" << settlingTime_ms << ";updateDelay=" << _outputDelay << std::endl; } LinearColorSmoothing::~LinearColorSmoothing()