]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/CLoggerConsole.cc
* code cleanup
[helm.git] / helm / DEVEL / mathml_editor / src / CLoggerConsole.cc
1
2 #include <iostream>
3
4 #include "CLoggerConsole.hh"
5
6 void
7 CLoggerConsole::message(Level l, const std::string& msg)
8 {
9   const char* ls[] = { "Error", "Warning", "Info", "Debug" };
10   cerr << "*** " << ls[l] << ": " << msg << endl;
11 }