Skip to content
Snippets Groups Projects
Commit 2fb86bda authored by Martin Gels's avatar Martin Gels
Browse files

bug 1005: Messages changed for used in LofarLogCout or LofarLog4Cplus.

parent cd3f1f04
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ inline PipelineOutputSet::PipelineOutputSet( const Parset &ps, Allocator &alloca
}
if( ps.IONintegrationSteps() > 1 && !o->itsData->isIntegratable() ) {
std::cerr << "WARNING: Not integrating output because the output data type does not support integration." << std::endl;
LOG_WARN("Not integrating output because the output data type does not support integration.");
} else {
o->itsIONintegrationSteps = ps.IONintegrationSteps();
}
......
......@@ -49,7 +49,7 @@ class StreamableData {
{ return integratable; }
virtual StreamableData &operator+=( const StreamableData & )
{ std::clog << "WARNING: Integration not implemented" << std::endl; return *this; }
{ LOG_WARN("Integration not implemented."); return *this; }
uint32_t sequenceNumber;
......@@ -166,7 +166,7 @@ template <typename T, unsigned DIM> inline void SampleData<T,DIM>::writeData( St
if( !itsHaveWarnedLittleEndian ) {
itsHaveWarnedLittleEndian = true;
std::clog << "Warning: writing data in little endian." << std::endl;
LOG_WARN("writing data in little endian.");
}
//THROW(AssertError, "not implemented: think about endianness");
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment