clearer error message for songs from db
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2026-02-03 10:45:43 -06:00
parent 85362c7d6e
commit 16ebbec4c4

View file

@ -662,7 +662,10 @@ impl Model<Song> {
}
}
Err(e) => {
error!("Could not convert song: {e}");
error!(
song_empty = song.is_empty(),
"Could not convert song: {e}: If the song doesn't have any verses, that would be why"
);
}
}
}