Write update_log.csv.copy in different format.

This commit is contained in:
Gerhard Hoffmann 2023-07-06 14:30:48 +02:00
parent ba8dd7d083
commit 85b2c1f08e

View File

@ -787,15 +787,10 @@ bool Update::doUpdate() {
} else {
// TODO
}
char buf[128];
memset(buf, 0x00, sizeof(buf));
snprintf(buf, sizeof(buf)-1, "DONE, %*.*s, %*.*s, %*.*s\n",
35, 35, name.toStdString().c_str(),
20, 20, QDateTime::currentDateTime().toString(Qt::ISODate).toStdString().c_str(),
10, 10, (res == true) ? "SUCCESS" : "ERROR");
m_update_ctrl_file_copy.write(buf);
qInfo() << "write" << buf << "into file" << m_update_ctrl_file_copy;
out << "DONE, " << name << ", "
<< QDateTime::currentDateTime().toString(Qt::ISODate) << ", "
<< ((res == true) ? "SUCCESS" : "ERROR") << "\n";
out.flush();
} // for (it = openLines.cbegin(); it != openLines.end(); ++it) {