Skip to content

Commit fc1acf4

Browse files
authored
Log files with no match during scanning. (#18322)
1 parent 26eb19b commit fc1acf4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tasks/task_database.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,6 +725,9 @@ static int database_info_list_iterate_end_no_match(
725725
string_list_free(archive_list);
726726
}
727727
}
728+
else
729+
RARCH_LOG("[Scanner] No match for: \"%s\" (%s %08X)\n", path,
730+
db_state->serial, db_state->crc);
728731

729732
db_state->list_index = 0;
730733
db_state->entry_index = 0;
@@ -833,7 +836,7 @@ static int database_info_list_iterate_found_match(
833836
fill_pathname(entry_lbl,
834837
path_basename_nocompression(entry_path), "", str_len);
835838

836-
RARCH_LOG("[Scanner] No match for: \"%s\", CRC: 0x%08X\n", entry_path_str, db_state->crc);
839+
RARCH_LOG("[Scanner] Faulty match for: \"%s\", CRC: 0x%08X\n", entry_path_str, db_state->crc);
837840
}
838841

839842
if (!string_is_empty(archive_name))

0 commit comments

Comments
 (0)