diff transform/CSVFeatureWriter.cpp @ 1527:710e6250a401 zoom

Merge from default branch
author Chris Cannam
date Mon, 17 Sep 2018 13:51:14 +0100
parents 87ae75da6527
children 70e172e6cc59
line wrap: on
line diff
--- a/transform/CSVFeatureWriter.cpp	Mon Dec 12 15:18:52 2016 +0000
+++ b/transform/CSVFeatureWriter.cpp	Mon Sep 17 13:51:14 2018 +0100
@@ -117,8 +117,8 @@
         } else if (i->first == "digits") {
             int digits = atoi(i->second.c_str());
             if (digits <= 0 || digits > 100) {
-                cerr << "CSVFeatureWriter: ERROR: Invalid or out-of-range value for number of significant digits: " << i->second << endl;
-                cerr << "CSVFeatureWriter: NOTE: Continuing with default settings" << endl;
+                SVCERR << "CSVFeatureWriter: ERROR: Invalid or out-of-range value for number of significant digits: " << i->second << endl;
+                SVCERR << "CSVFeatureWriter: NOTE: Continuing with default settings" << endl;
             } else {
                 m_digits = digits;
             }