diff --git a/src/core/songs.rs b/src/core/songs.rs index 31f5513..9e370be 100644 --- a/src/core/songs.rs +++ b/src/core/songs.rs @@ -446,7 +446,6 @@ impl Song { for verse in verse_order.unwrap_or_default() { let mut verse_name = ""; - debug!(verse = verse); for word in VERSE_KEYWORDS { let end_verse = verse.get(1..2).unwrap_or_default(); @@ -476,9 +475,9 @@ impl Song { error!("NOT WORKING!"); }; } - for lyric in lyric_list.iter() { - debug!(lyric = ?lyric) - } + // for lyric in lyric_list.iter() { + // debug!(lyric = ?lyric) + // } Ok(lyric_list) } else { Err(miette!("There are no lyrics")) diff --git a/src/ui/song_editor.rs b/src/ui/song_editor.rs index 62cdd52..7fc2050 100644 --- a/src/ui/song_editor.rs +++ b/src/ui/song_editor.rs @@ -40,6 +40,7 @@ pub struct SongEditor { background: Option, video: Option