mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-14 07:07:44 +02:00
Task #3954 - Make "lock to screen" log message go to NOTE level instead of DEBUG
This commit is contained in:
parent
28a6b16875
commit
a97fa1428b
1 changed files with 2 additions and 2 deletions
|
@ -408,7 +408,7 @@ CServer::isLockedToScreen() const
|
|||
{
|
||||
// locked if we say we're locked
|
||||
if (isLockedToScreenServer()) {
|
||||
LOG((CLOG_DEBUG "locked to screen"));
|
||||
LOG((CLOG_NOTE "cursor is locked to screen"));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1452,7 +1452,7 @@ CServer::handleLockCursorToScreenEvent(const CEvent& event, void*)
|
|||
// enter new state
|
||||
if (newState != m_lockedToScreen) {
|
||||
m_lockedToScreen = newState;
|
||||
LOG((CLOG_DEBUG "cursor %s current screen", m_lockedToScreen ? "locked to" : "unlocked from"));
|
||||
LOG((CLOG_NOTE "cursor %s current screen", m_lockedToScreen ? "locked to" : "unlocked from"));
|
||||
|
||||
m_primaryClient->reconfigure(getActivePrimarySides());
|
||||
if (!isLockedToScreenServer()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue