Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpio810 committed Jan 26, 2025
1 parent 7a19756 commit 1ac3242
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions sources/machine_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void MachineInfo::send_info_to_debug()
commomElementsDir ++;
}
}
qInfo()<< " Common Elements count:"<< commomElementsDir;
qInfo()<< " Common Elements count:"<< commomElementsDir << "Elements";


int customElementsDir = 0;
Expand All @@ -205,7 +205,7 @@ void MachineInfo::send_info_to_debug()
customElementsDir ++;
}
}
qInfo()<< " Custom Elements count:"<< customElementsDir;
qInfo()<< " Custom Elements count:"<< customElementsDir << "Elements";

int companyElementsDir = 0;
QDirIterator it3(QETApp::companyElementsDir().toLatin1(), nameFilters, QDir::Files, QDirIterator::Subdirectories);
Expand All @@ -216,7 +216,8 @@ void MachineInfo::send_info_to_debug()
companyElementsDir ++;
}
}
qInfo()<< " Company Elements count:"<< companyElementsDir;
qInfo()<< " Company Elements count:"<< companyElementsDir << "Elements";

qInfo()<< "";

qInfo()<< "*** Qt screens ***";
Expand Down Expand Up @@ -251,7 +252,7 @@ void MachineInfo::send_info_to_debug()
qInfo() << "FileSystemType:" << storage.fileSystemType();
qInfo() << "SizeTotal:" << storage.bytesTotal()/1000000000 << "GB";
qInfo() << "AvailableSize:" << storage.bytesAvailable()/1000000000 << "GB";

qInfo()<< "Count All Elements in collections ="<< commomElementsDir + customElementsDir + customElementsDir << "Elements";

}

Expand Down

0 comments on commit 1ac3242

Please sign in to comment.