fix frontend channel buffer size

This commit is contained in:
Ferdinand Schober
2024-01-16 16:03:33 +01:00
parent 0017dbc634
commit 347256e966
2 changed files with 7 additions and 2 deletions

View File

@@ -34,7 +34,12 @@ pub fn run() -> glib::ExitCode {
#[cfg(not(windows))]
let ret = gtk_main();
log::debug!("frontend exited");
if ret == glib::ExitCode::FAILURE {
log::error!("frontend exited with failure");
} else {
log::info!("frontend exited successfully");
}
ret
}