From b4a09cd9459cbce0bc3ed4b20b711df03c3dee6a Mon Sep 17 00:00:00 2001 From: Do Duy Date: Wed, 23 Oct 2019 20:11:17 -0700 Subject: Fix setting persistent logging via CLI --- alacritty/src/cli.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alacritty/src') diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 98edabcb..83fd0604 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -285,6 +285,8 @@ impl Options { config.debug.print_events = self.print_events || config.debug.print_events; config.debug.log_level = max(config.debug.log_level, self.log_level); config.debug.ref_test = self.ref_test || config.debug.ref_test; + config.debug.persistent_logging = + self.persistent_logging || config.debug.persistent_logging; if config.debug.print_events { config.debug.log_level = max(config.debug.log_level, LevelFilter::Info); -- cgit