This commit is contained in:
2025-12-13 14:15:38 +01:00
parent 5d9e612ebd
commit 69338784bc
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#ifndef REHDD_H_ #ifndef REHDD_H_
#define REHDD_H_ #define REHDD_H_
#define REHDD_VERSION "V1.2.1" #define REHDD_VERSION "V1.3.0"
// Drive handling Settings // Drive handling Settings
#define WORSE_HOURS 19200 // mark drive if at this limit or beyond #define WORSE_HOURS 19200 // mark drive if at this limit or beyond

View File

@ -427,6 +427,7 @@ void reHDD::filterIgnoredDrives(list<Drive> *plistDrives)
string systemDrivePath; string systemDrivePath;
if (getSystemDrive(systemDrivePath)) if (getSystemDrive(systemDrivePath))
{ {
// Logger::logThis()->info("Found system drive: " + systemDrivePath);
list<Drive>::iterator it = plistDrives->begin(); list<Drive>::iterator it = plistDrives->begin();
while (it != plistDrives->end()) while (it != plistDrives->end())
{ {