* eoStdoutMonitor.h: warning message should be disabled
This commit is contained in:
parent
f962a7942b
commit
5c85bbdede
1 changed files with 3 additions and 1 deletions
|
|
@ -46,7 +46,9 @@ public :
|
||||||
eoStdoutMonitor(bool _verbose, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
|
eoStdoutMonitor(bool _verbose, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
|
||||||
eoOStreamMonitor( std::cout, _verbose, _delim, _width, _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=' ' ) :
|
eoStdoutMonitor(std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
|
||||||
|
|
|
||||||
Reference in a new issue