[GH-ISSUE #30] Error counter loggin not supported not catched and reported #5

Closed
opened 2026-03-07 19:22:00 +03:00 by kerem · 6 comments
Owner

Originally created by @framps on GitHub (Sep 25, 2025).
Original GitHub issue: https://github.com/007revad/Synology_SMART_info/issues/30

I run this nice script for a long time now on my Synology to track my SMART values. Great tool 👍

But I just noticed by chance

smartctl -l error /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
Error Counter logging not supported


[GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on']

and syno_smart_info reports No errors logged

Drive 1  WD40EFRX-68N32N0  WD-WCC7K0AHV7TL
SMART overall-health self-assessment test result: PASSED
SMART Error Counter Log:         No Errors Logged
  1 Raw_Read_Error_Rate          0
  5 Reallocated_Sector_Ct        0
  7 Seek_Error_Rate              0
  9 Power_On_Hours               52206
 10 Spin_Retry_Count             0
194 Temperature_Celsius          25
197 Current_Pending_Sector       0
198 Offline_Uncorrectable        0
199 UDMA_CRC_Error_Count         0
200 Multi_Zone_Error_Rate        0

I would expect a message like Error logging not supported.

I however I get another message when I use -d sat

smartctl -l error -d sat /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged

So my question is whether -d sat is missing to get an error log counter or the code should be modified to report the missing error log capability of the disk.

Originally created by @framps on GitHub (Sep 25, 2025). Original GitHub issue: https://github.com/007revad/Synology_SMART_info/issues/30 I run this nice script for a long time now on my Synology to track my SMART values. Great tool 👍 But I just noticed by chance ``` smartctl -l error /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === Error Counter logging not supported [GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on'] ``` and syno_smart_info reports **No errors logged** ``` Drive 1 WD40EFRX-68N32N0 WD-WCC7K0AHV7TL SMART overall-health self-assessment test result: PASSED SMART Error Counter Log: No Errors Logged 1 Raw_Read_Error_Rate 0 5 Reallocated_Sector_Ct 0 7 Seek_Error_Rate 0 9 Power_On_Hours 52206 10 Spin_Retry_Count 0 194 Temperature_Celsius 25 197 Current_Pending_Sector 0 198 Offline_Uncorrectable 0 199 UDMA_CRC_Error_Count 0 200 Multi_Zone_Error_Rate 0 ``` I would expect a message like **Error logging not supported**. I however I get another message when I use `-d sat` ``` smartctl -l error -d sat /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Error Log Version: 1 No Errors Logged ``` So my question is whether `-d sat` is missing to get an error log counter or the [code](https://github.com/007revad/Synology_SMART_info/blob/a98c0028a29570284cddf81626b16af3d9bda178/syno_smart_info.sh#L547) should be modified to report the missing error log capability of the disk.
kerem closed this issue 2026-03-07 19:22:00 +03:00
Author
Owner

@007revad commented on GitHub (Sep 25, 2025):

Sometimes smartctl cannot auto detect the drive type, so you need to specify -d sat for SATA drives or -d scsi for SAS drives.

Which DSM version? Which Synology model?

I'm getting the same thing as you in DSM 6.2.4 on a DS1812+

Without -d sat

root@WEBBER:~# smartctl -l error /dev/sda
smartctl 6.5 (build date Mar  2 2021) [x86_64-linux-3.10.105] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
Error Counter logging not supported


[GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on']

With -d sat

root@WEBBER:~# smartctl -l error -d sat /dev/sda
smartctl 6.5 (build date Mar  2 2021) [x86_64-linux-3.10.105] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged

But with DSM 7.2.2 on a DS1821+ both -l error and -l error -d sat give the same result:

Without -d sat

root@DISKSTATION:~# smartctl -l error /dev/sata3
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged

With -d sat

root@DISKSTATION:~# smartctl -l error -d sat /dev/sata3
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged
<!-- gh-comment-id:3336274408 --> @007revad commented on GitHub (Sep 25, 2025): Sometimes smartctl cannot auto detect the drive type, so you need to specify `-d sat` for SATA drives or `-d scsi` for SAS drives. Which DSM version? Which Synology model? I'm getting the same thing as you in DSM 6.2.4 on a DS1812+ Without -d sat ``` root@WEBBER:~# smartctl -l error /dev/sda smartctl 6.5 (build date Mar 2 2021) [x86_64-linux-3.10.105] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === Error Counter logging not supported [GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on'] ``` With -d sat ``` root@WEBBER:~# smartctl -l error -d sat /dev/sda smartctl 6.5 (build date Mar 2 2021) [x86_64-linux-3.10.105] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Error Log Version: 1 No Errors Logged ``` But with DSM 7.2.2 on a DS1821+ both `-l error` and `-l error -d sat` give the same result: Without -d sat ``` root@DISKSTATION:~# smartctl -l error /dev/sata3 smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Error Log Version: 1 No Errors Logged ``` With -d sat ``` root@DISKSTATION:~# smartctl -l error -d sat /dev/sata3 smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Error Log Version: 1 No Errors Logged ```
Author
Owner

@framps commented on GitHub (Sep 26, 2025):

Which DSM version? Which Synology model?

7.2.2.-72806, DS418play

sudo smartctl -l error -d sat /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged

sudo smartctl -l error /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
Error Counter logging not supported


[GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on']

So I do net get the same result like you. Without -d sat error logging is not supported.

That's my disk:

sudo smartctl -a /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               WDC
Product:              WD40EFRX-68N32N0
Revision:             0A82
User Capacity:        4,000,787,030,016 bytes [4.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        5400 rpm
Form Factor:          3.5 inches
Logical Unit id:      0x50014ee266cae699
Serial number:      @@@@@@@@@@@
Device type:          disk
Local Time is:        Fri Sep 26 10:22:39 2025 CEST
SMART support is:     Unavailable - device lacks SMART capability.

=== START OF READ SMART DATA SECTION ===
Current Drive Temperature:     0 C
Drive Trip Temperature:        0 C

Error Counter logging not supported


[GLTSD (Global Logging Target Save Disable) set. Enable Save with &apos;-S on&apos;]
Device does not support Self Test logging

If I pass -d sat I get

sudo smartctl -d sat -a /dev/sda
smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Family:     Western Digital Red (CMR)
Device Model:     WDC WD40EFRX-68N32N0
Serial Number:    @@@@@@@@@@@@@@@@
LU WWN Device Id: 5 0014ee 266cae699
Firmware Version: 82.00A82
User Capacity:    4,000,787,030,016 bytes [4.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Rotation Rate:    5400 rpm
Form Factor:      3.5 inches
Device is:        In smartctl database [for details use: -P show]
ATA Version is:   ACS-3 T13/2161-D revision 5
SATA Version is:  SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s)
Local Time is:    Fri Sep 26 10:23:57 2025 CEST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x00)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Disabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		(43920) seconds.
Offline data collection
capabilities: 			 (0x7b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   2) minutes.
Extended self-test routine
recommended polling time: 	 ( 466) minutes.
Conveyance self-test routine
recommended polling time: 	 (   5) minutes.
SCT capabilities: 	       (0x303d)	SCT Status supported.
					SCT Error Recovery Control supported.
					SCT Feature Control supported.
					SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME                                                   FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate                                              0x002f   200   200   051    Pre-fail  Always       -       0
  3 Spin_Up_Time                                                     0x0027   164   164   021    Pre-fail  Always       -       6775
  4 Start_Stop_Count                                                 0x0032   100   100   000    Old_age   Always       -       123
  5 Reallocated_Sector_Ct                                            0x0033   200   200   140    Pre-fail  Always       -       0
  7 Seek_Error_Rate                                                  0x002e   200   200   000    Old_age   Always       -       0
  9 Power_On_Hours                                                   0x0032   029   029   000    Old_age   Always       -       52223
 10 Spin_Retry_Count                                                 0x0032   100   100   000    Old_age   Always       -       0
 11 Calibration_Retry_Count                                          0x0032   100   100   000    Old_age   Always       -       0
 12 Power_Cycle_Count                                                0x0032   100   100   000    Old_age   Always       -       111
192 Power-Off_Retract_Count                                          0x0032   200   200   000    Old_age   Always       -       4
193 Load_Cycle_Count                                                 0x0032   200   200   000    Old_age   Always       -       158
194 Temperature_Celsius                                              0x0022   125   115   000    Old_age   Always       -       25
196 Reallocated_Event_Count                                          0x0032   200   200   000    Old_age   Always       -       0
197 Current_Pending_Sector                                           0x0032   200   200   000    Old_age   Always       -       0
198 Offline_Uncorrectable                                            0x0030   100   253   000    Old_age   Offline      -       0
199 UDMA_CRC_Error_Count                                             0x0032   200   200   000    Old_age   Always       -       0
200 Multi_Zone_Error_Rate                                            0x0008   100   253   000    Old_age   Offline      -       0

SMART Error Log Version: 1
No Errors Logged

SMART Self-test log structure revision number 1
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short offline       Completed without error       00%     52165         -
# 2  Short offline       Completed without error       00%     51997         -
# 3  Short offline       Completed without error       00%     51829         -
# 4  Short offline       Completed without error       00%     51661         -
# 5  Short offline       Completed without error       00%     51493         -
# 6  Short offline       Completed without error       00%     51325         -
# 7  Short offline       Completed without error       00%     51158         -
# 8  Short offline       Completed without error       00%     50990         -
# 9  Short offline       Completed without error       00%     50822         -
#10  Short offline       Completed without error       00%     50654         -
#11  Short offline       Completed without error       00%     50486         -
#12  Short offline       Completed without error       00%     50319         -
#13  Short offline       Completed without error       00%     50151         -
#14  Short offline       Completed without error       00%     49983         -
#15  Short offline       Completed without error       00%     49815         -
#16  Short offline       Completed without error       00%     49647         -
#17  Short offline       Completed without error       00%     49479         -
#18  Short offline       Completed without error       00%     49312         -
#19  Short offline       Completed without error       00%     49144         -
#20  Short offline       Completed without error       00%     48976         -
#21  Short offline       Completed without error       00%     48808         -

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

So it looks for me for my disk the option -d sat should be passed in order to get an error log count. In addition the retrieval of the error count should check whether an error count is available and inform/warn about this and inform option -d sat or -d scsi should be added. Maybe the type (sata or scsi) can be queried somewhere?

<!-- gh-comment-id:3337355154 --> @framps commented on GitHub (Sep 26, 2025): > Which DSM version? Which Synology model? 7.2.2.-72806, DS418play ``` sudo smartctl -l error -d sat /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === SMART Error Log Version: 1 No Errors Logged sudo smartctl -l error /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF READ SMART DATA SECTION === Error Counter logging not supported [GLTSD (Global Logging Target Save Disable) set. Enable Save with '-S on'] ``` So I do net get the same result like you. Without `-d sat` error logging is not supported. That's my disk: ``` sudo smartctl -a /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Vendor: WDC Product: WD40EFRX-68N32N0 Revision: 0A82 User Capacity: 4,000,787,030,016 bytes [4.00 TB] Logical block size: 512 bytes Physical block size: 4096 bytes LU is fully provisioned Rotation Rate: 5400 rpm Form Factor: 3.5 inches Logical Unit id: 0x50014ee266cae699 Serial number: @@@@@@@@@@@ Device type: disk Local Time is: Fri Sep 26 10:22:39 2025 CEST SMART support is: Unavailable - device lacks SMART capability. === START OF READ SMART DATA SECTION === Current Drive Temperature: 0 C Drive Trip Temperature: 0 C Error Counter logging not supported [GLTSD (Global Logging Target Save Disable) set. Enable Save with &apos;-S on&apos;] Device does not support Self Test logging ``` If I pass `-d sat` I get ``` sudo smartctl -d sat -a /dev/sda smartctl 6.5 (build date Sep 26 2022) [x86_64-linux-4.4.302+] (local build) Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Model Family: Western Digital Red (CMR) Device Model: WDC WD40EFRX-68N32N0 Serial Number: @@@@@@@@@@@@@@@@ LU WWN Device Id: 5 0014ee 266cae699 Firmware Version: 82.00A82 User Capacity: 4,000,787,030,016 bytes [4.00 TB] Sector Sizes: 512 bytes logical, 4096 bytes physical Rotation Rate: 5400 rpm Form Factor: 3.5 inches Device is: In smartctl database [for details use: -P show] ATA Version is: ACS-3 T13/2161-D revision 5 SATA Version is: SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s) Local Time is: Fri Sep 26 10:23:57 2025 CEST SMART support is: Available - device has SMART capability. SMART support is: Enabled === START OF READ SMART DATA SECTION === SMART overall-health self-assessment test result: PASSED General SMART Values: Offline data collection status: (0x00) Offline data collection activity was never started. Auto Offline Data Collection: Disabled. Self-test execution status: ( 0) The previous self-test routine completed without error or no self-test has ever been run. Total time to complete Offline data collection: (43920) seconds. Offline data collection capabilities: (0x7b) SMART execute Offline immediate. Auto Offline data collection on/off support. Suspend Offline collection upon new command. Offline surface scan supported. Self-test supported. Conveyance Self-test supported. Selective Self-test supported. SMART capabilities: (0x0003) Saves SMART data before entering power-saving mode. Supports SMART auto save timer. Error logging capability: (0x01) Error logging supported. General Purpose Logging supported. Short self-test routine recommended polling time: ( 2) minutes. Extended self-test routine recommended polling time: ( 466) minutes. Conveyance self-test routine recommended polling time: ( 5) minutes. SCT capabilities: (0x303d) SCT Status supported. SCT Error Recovery Control supported. SCT Feature Control supported. SCT Data Table supported. SMART Attributes Data Structure revision number: 16 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0 3 Spin_Up_Time 0x0027 164 164 021 Pre-fail Always - 6775 4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 123 5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0 7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0 9 Power_On_Hours 0x0032 029 029 000 Old_age Always - 52223 10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0 11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 111 192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 4 193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 158 194 Temperature_Celsius 0x0022 125 115 000 Old_age Always - 25 196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0 197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0 198 Offline_Uncorrectable 0x0030 100 253 000 Old_age Offline - 0 199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0 200 Multi_Zone_Error_Rate 0x0008 100 253 000 Old_age Offline - 0 SMART Error Log Version: 1 No Errors Logged SMART Self-test log structure revision number 1 Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error # 1 Short offline Completed without error 00% 52165 - # 2 Short offline Completed without error 00% 51997 - # 3 Short offline Completed without error 00% 51829 - # 4 Short offline Completed without error 00% 51661 - # 5 Short offline Completed without error 00% 51493 - # 6 Short offline Completed without error 00% 51325 - # 7 Short offline Completed without error 00% 51158 - # 8 Short offline Completed without error 00% 50990 - # 9 Short offline Completed without error 00% 50822 - #10 Short offline Completed without error 00% 50654 - #11 Short offline Completed without error 00% 50486 - #12 Short offline Completed without error 00% 50319 - #13 Short offline Completed without error 00% 50151 - #14 Short offline Completed without error 00% 49983 - #15 Short offline Completed without error 00% 49815 - #16 Short offline Completed without error 00% 49647 - #17 Short offline Completed without error 00% 49479 - #18 Short offline Completed without error 00% 49312 - #19 Short offline Completed without error 00% 49144 - #20 Short offline Completed without error 00% 48976 - #21 Short offline Completed without error 00% 48808 - SMART Selective self-test log data structure revision number 1 SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS 1 0 0 Not_testing 2 0 0 Not_testing 3 0 0 Not_testing 4 0 0 Not_testing 5 0 0 Not_testing Selective self-test flags (0x0): After scanning selected spans, do NOT read-scan remainder of disk. If Selective self-test is pending on power-up, resume after 0 minute delay. ``` So it looks for me for my disk the option `-d sat` should be passed in order to get an error log count. In addition the retrieval of the error count should check whether an error count is available and inform/warn about this and inform option `-d sat` or `-d scsi` should be added. Maybe the type (sata or scsi) can be queried somewhere?
Author
Owner

@007revad commented on GitHub (Sep 27, 2025):

Fixed in v1.3.17

I'll add a check if "Error Counter logging not supported" was returned in v1.3.18

<!-- gh-comment-id:3340832800 --> @007revad commented on GitHub (Sep 27, 2025): Fixed in [v1.3.17](https://github.com/007revad/Synology_SMART_info/releases/tag/v1.3.17) I'll add a check if "Error Counter logging not supported" was returned in v1.3.18
Author
Owner

@007revad commented on GitHub (Sep 27, 2025):

I've got a new version working with WD drives. I had 2 faulty WD drives sitting on my desk :o)

I'll upload it to GitHub after some more testing.

Image



And I got it showing "Error Counter logging not supported" or "SMART Error Log not supported" if that's what was returned, like this SATA SSD drive that does not support SMART error logging.

Image
<!-- gh-comment-id:3341104744 --> @007revad commented on GitHub (Sep 27, 2025): I've got a new version working with WD drives. I had 2 faulty WD drives sitting on my desk :o) I'll upload it to GitHub after some more testing. <img width="661" height="274" alt="Image" src="https://github.com/user-attachments/assets/63fbf6a9-494c-4d11-a3f1-fa729a730d54" /> </br></br> And I got it showing "Error Counter logging not supported" or "SMART Error Log not supported" if that's what was returned, like this SATA SSD drive that does not support SMART error logging. <img width="661" height="242" alt="Image" src="https://github.com/user-attachments/assets/8c2b3d00-118d-4ff4-a8c8-41d33af810dd" />
Author
Owner

@framps commented on GitHub (Sep 27, 2025):

v1.3.17 works perfectly on my system 👍

<!-- gh-comment-id:3341442237 --> @framps commented on GitHub (Sep 27, 2025): v1.3.17 works perfectly on my system 👍
Author
Owner

@framps commented on GitHub (Sep 28, 2025):

Verified with 1.3.18 successfully

<!-- gh-comment-id:3343885764 --> @framps commented on GitHub (Sep 28, 2025): Verified with 1.3.18 successfully
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Synology_SMART_info#5
No description provided.