Remove left in debug statement

This commit is contained in:
pjht 2022-11-12 15:48:11 -06:00
parent 4e814b5009
commit 1e021632b1

View File

@ -51,7 +51,6 @@ fn main() -> Result<(), anyhow::Error> {
.map_err(|e| anyhow!("Could not read config file ({})", e))?;
let config: EmuConfig =
toml::from_str(&config_str).map_err(|e| anyhow!("Could not parse config file ({})", e))?;
dbg!(&config);
let backplane = Backplane::new(config.cards)?;
let mut symbol_tables = SymbolTables::new();
if let Some(initial_tables) = config.symbol_tables {