去掉一些输出日志,以防日志文件大小增长过快

This commit is contained in:
zhaominyong 2022-06-15 15:04:38 +08:00
parent e386703fd9
commit a936536f5a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ RsyncPathToDirProcess::RsyncPathToDirProcess(QObject *parent) :
connect(m_p, &QProcess::readyRead, this, [&]() {
QString str = QString(m_p->readAll());
qDebug() << str;
// qDebug() << str;
// if (str.contains("B\/s") && str.contains("%")) {
if (str.contains("B/s") && str.contains("%")) {
if (str.split("%").at(0).length() < 3)