remove debug view + implement debug logging to file

closes #41
This commit is contained in:
Henrik Friedrichsen
2019-03-23 15:48:54 +01:00
parent 8746a10299
commit b318ac84e6
4 changed files with 46 additions and 22 deletions

View File

@@ -129,17 +129,6 @@ impl CommandManager {
);
}
self.register(
"log",
Vec::new(),
Box::new(move |s, _args| {
s.call_on_id("main", |v: &mut Layout| {
v.set_view("log");
});
Ok(None)
}),
);
self.register(
"move",
Vec::new(),
@@ -365,7 +354,6 @@ impl CommandManager {
kb.insert("F1".into(), "queue".into());
kb.insert("F2".into(), "search".into());
kb.insert("F3".into(), "playlists".into());
kb.insert("F9".into(), "log".into());
kb.insert("Up".into(), "move up".into());
kb.insert("Down".into(), "move down".into());