* eoStdoutMonitor.h: warning message should be disabled

This commit is contained in:
Caner Candan 2012-06-22 15:35:16 +02:00
commit 5c85bbdede

View file

@ -46,7 +46,9 @@ public :
eoStdoutMonitor(bool _verbose, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
eoOStreamMonitor( std::cout, _verbose, _delim, _width, _fill)
{
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoStdutMonitor constructor is deprecated and will be removed in the next release" << std::endl;
#ifndef DEPRECATED_MESSAGES
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoStdoutMonitor constructor is deprecated and will be removed in the next release" << std::endl;
#endif // !DEPRECATED_MESSAGES
}
eoStdoutMonitor(std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :