From 7ced4b5580c0eba3846132bb2e44f3d1a322b9dc Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Thu, 9 Feb 2017 16:21:18 +0100 Subject: [PATCH] =?UTF-8?q?preprocessor:=20change=20error=20to=20warning?= =?UTF-8?q?=20because=20we=20don=E2=80=99t=20end=20processing=20in=20this?= =?UTF-8?q?=20situation;=20fix=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- preprocessor/ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ComputingTasks.cc b/preprocessor/ComputingTasks.cc index ca83e94e8..9843ba7d5 100644 --- a/preprocessor/ComputingTasks.cc +++ b/preprocessor/ComputingTasks.cc @@ -1058,7 +1058,7 @@ ObservationTrendsStatement::writeOutput(ostream &output, const string &basename, output << "';" << endl; } else - cout << "Error : Non-variable symbol used in TREND_COEFF: " << it->first << endl; + cerr << "Warning : Non-variable symbol used in observation_trends: " << it->first << endl; } }