Remove debug output from SMART parsing.

This commit is contained in:
Julian Frohmüller
2023-11-25 17:42:24 +01:00
parent 3628e90b0e
commit d857632a57
+1 -2
View File
@@ -2357,8 +2357,7 @@ int read_log_file_ccc(char *log_file)
char raw_threshold[MAX_LINE_LENGTH] = "";
char raw_raw[MAX_LINE_LENGTH] = "";
char raw_name[MAX_LINE_LENGTH] = "";
// print the line to console for debugging
fprintf(stdout, "%s\n", line);
sscanf(line, "# %s %s %s %s %s %s %[^\n]", raw_id, raw_flags, raw_current, raw_worst, raw_threshold, raw_raw, raw_name);
smart_data_ccc.id[smart_data_ccc.value_count] = strtoll(raw_id, NULL, 10);