mirror of
https://github.com/polybar/polybar.git
synced 2024-12-09 14:10:19 -05:00
refactor(tray): Log restack failure as error
I suspect that people that are seeing the tray above their fullscreen windows get this exception
This commit is contained in:
parent
77d36b959d
commit
930be72c89
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ void tray_manager::restack_window() {
|
|||
m_connection.configure_window_checked(m_tray, mask, values);
|
||||
} catch (const exception& err) {
|
||||
auto id = m_connection.id(m_opts.sibling);
|
||||
m_log.trace("tray: Failed to put tray above %s in the stack (%s)", id, err.what());
|
||||
m_log.err("tray: Failed to put tray above %s in the stack (%s)", id, err.what());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue