Skip to content

Commit

Permalink
[contour] Better don't log that as errorlog but as InputLog - and key…
Browse files Browse the repository at this point in the history
… in hex to be more useful.
  • Loading branch information
christianparpart authored and uspasojevic96 committed Jun 3, 2022
1 parent 80fb88b commit 42834d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contour/helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ bool sendKeyEvent(QKeyEvent* _event, TerminalSession& _session)
case Qt::Key_BraceRight: _session.sendCharPressEvent(L']', modifiers, now); return true;
}

errorlog()("Input not handled for mods {} key {}", modifiers, key);
InputLog()("Input not handled for mods {} key 0x{:X}", modifiers, key);
return false;
}

Expand Down

0 comments on commit 42834d2

Please sign in to comment.