ENH: flush the output

This commit is contained in:
Andy Cedilnik 2006-01-05 12:33:23 -05:00
parent 88b4d5c179
commit 4a765181cc
1 changed files with 2 additions and 0 deletions

View File

@ -208,10 +208,12 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_
if ( error || warning )
{
m_DefaultError->write(msg, length);
m_DefaultError->flush();
}
else
{
m_DefaultOutput->write(msg, length);
m_DefaultOutput->flush();
}
if ( msg[length-1] == '\n' || length > 2 )
{