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 24165ee commit a73452b
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 @@ -177,8 +177,8 @@ void MachineInfo::send_info_to_debug()
// qInfo()<< " Home Location:"<< QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
// qInfo()<< " Runtime Location:"<< QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation);
// qInfo()<< " Cache Location:"<< QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
qInfo()<< "";
qInfo()<< "";


qInfo()<< " For elmt-files (user-/common-collections, user-/company-collections, user-/custom-collections, etc.):";
QStringList nameFilters;
Expand Down Expand Up @@ -217,7 +217,7 @@ void MachineInfo::send_info_to_debug()
}
}
qInfo()<< " Company Elements count:"<< companyElementsDir;

qInfo()<< "";

qInfo()<< "*** Qt screens ***";

Expand All @@ -231,6 +231,7 @@ void MachineInfo::send_info_to_debug()
+ " )";
}
qInfo()<< "";

foreach (const QStorageInfo &storage, QStorageInfo::mountedVolumes()) {
if (storage.isReadOnly())
qDebug() << "isReadOnly:" << storage.isReadOnly();
Expand All @@ -242,7 +243,7 @@ void MachineInfo::send_info_to_debug()
}

QStorageInfo storage(qApp->applicationDirPath());

if (storage.isReadOnly())
qDebug() << "isReadOnly:" << storage.isReadOnly();

Expand Down

0 comments on commit a73452b

Please sign in to comment.