Add LM_DEBUG_LAYER_SHELL environment variable

setting LM_DEBUG_LAYER_SHELL to a value will
make the indicators visible
This commit is contained in:
Ferdinand Schober
2023-09-21 18:22:20 +02:00
parent b2179e88de
commit 603646c799
2 changed files with 9 additions and 3 deletions

View File

@@ -116,6 +116,6 @@ impl Source for FrontendAdapter {
impl Drop for FrontendAdapter {
fn drop(&mut self) {
log::debug!("remove socket: {:?}", self.socket_path);
std::fs::remove_file(&self.socket_path).unwrap();
let _ = std::fs::remove_file(&self.socket_path);
}
}