diff --git a/openbr/plugins/time.cpp b/openbr/plugins/time.cpp index c1b9755..466a15b 100644 --- a/openbr/plugins/time.cpp +++ b/openbr/plugins/time.cpp @@ -50,9 +50,9 @@ private: { (void)output; - printf("\n\nProfiled %lu images:\n" - "\tavg time per image: %f ms\n" - "\tavg time per pixel: %f ms\n",numImgs, (double)timeElapsed / numImgs, (double)timeElapsed / numPixels); + qDebug() << "\n\nProfiled " << numImgs << " images:\n" << + "\tavg time per image: " << (double)timeElapsed / numImgs << " ms\n" << + "\tavg time per pixel: " << (double)timeElapsed / numPixels << " ms\n"; timeElapsed = 0; numImgs = 0;