From c9215e9e448682af7d7d7d44d022fb3304c5e7ff Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Mon, 12 Jul 2010 00:56:52 +0300 Subject: [PATCH] Change the "information" error to "debug" error. There was one debugging error sent with "information" severity. That confused the GUI that didn't know such severity. Change the severity to "debug" so the meaning of the error is more clear. --- lib/tokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tokenize.cpp b/lib/tokenize.cpp index 2ef4bb04f..76c0660b2 100644 --- a/lib/tokenize.cpp +++ b/lib/tokenize.cpp @@ -2287,7 +2287,7 @@ void Tokenizer::simplifyTemplates() locationList.push_back(loc); const ErrorLogger::ErrorMessage errmsg(locationList, - "information", + "debug", "Failed to instantiate template. The checking continues anyway.", "templateInstantiate");