コード例 #1
0
ファイル: loggerbuilder.cpp プロジェクト: MrTheodor/gromacs
void LogTargetFormatter::writeEntry(const LogEntry &entry)
{
    if (entry.asParagraph)
    {
        writer_.ensureEmptyLine();
    }
    writer_.writeLine(entry.text);
    if (entry.asParagraph)
    {
        writer_.ensureEmptyLine();
    }
}