mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Make debug output conditional
This commit is contained in:
parent
795a3a5456
commit
475bfee924
@ -810,12 +810,14 @@ QStringList getDriveList()
|
||||
#endif
|
||||
foreach (const QStorageInfo &storage, QStorageInfo::mountedVolumes()) {
|
||||
if (storage.isValid() && storage.isReady()) {
|
||||
#ifdef DEBUG_SDCARD
|
||||
if (storage.fileSystemType() != "tmpfs") { // Don't show all the Linux tmpfs mount points!
|
||||
qDebug() << "Device:" << storage.device();
|
||||
qDebug() << " Path:" << storage.rootPath();
|
||||
qDebug() << " Name:" << storage.name(); // ...
|
||||
qDebug() << " FS Type:" << storage.fileSystemType();
|
||||
}
|
||||
#endif
|
||||
if (storage.fileSystemType() == VFAT) {
|
||||
qDebug() << "Adding" << storage.name() << "on" << storage.rootPath() << "to drivelist";
|
||||
drivelist.push_back(storage.rootPath());
|
||||
|
Loading…
Reference in New Issue
Block a user