Remove logging

This commit is contained in:
Nathan Sobo 2021-08-04 17:09:15 -06:00
parent 85a076312a
commit 039dae064c

View File

@ -49,7 +49,7 @@ pub fn channel_with_themes(
themes: &ThemeRegistry,
) -> Result<(watch::Sender<Settings>, watch::Receiver<Settings>)> {
let theme = match themes.get(DEFAULT_THEME_NAME) {
Ok(theme) => dbg!(theme),
Ok(theme) => theme,
Err(err) => {
panic!("failed to deserialize default theme: {:?}", err)
}