@@ -67,6 +67,7 @@ pub fn main() anyerror!noreturn {
while (try walker.next()) |entry| {
if (entry.kind != .file) continue;
std.log.debug("opening '{s}'", .{entry.path});
const file = player.File.open(config.music_directory.handle, entry.path, entry.basename) catch |err| {
std.log.warn("unable to open '{s}': {s}", .{ entry.path, @errorName(err) });
continue;