diff options
author | Devaev Maxim <[email protected]> | 2018-11-05 06:20:05 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-11-05 06:20:05 +0300 |
commit | 43bbf725b872d8b2cd1ed29b4689f2f31ffecace (patch) | |
tree | 23b393bd2c6013001b25d87d388353f8dab5d7ed /web/js/hid.js | |
parent | 9f2c0dd14ed57567eda7c2a539ba445dda79c3b2 (diff) |
js logs refactoring
Diffstat (limited to 'web/js/hid.js')
-rw-r--r-- | web/js/hid.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/js/hid.js b/web/js/hid.js index 77bb865b..5b13480f 100644 --- a/web/js/hid.js +++ b/web/js/hid.js @@ -66,7 +66,7 @@ function Hid() { var __emitShortcut = function(codes) { return new Promise(function(resolve) { - tools.debug("Emitting keys:", codes); + tools.debug("HID: emitting keys:", codes); var raw_events = []; [[codes, true], [codes.slice().reverse(), false]].forEach(function(op) { @@ -156,7 +156,7 @@ function Hid() { $("hid-pak-led").className = "led-yellow-rotating-fast"; $("hid-pak-led").title = "Autotyping..."; - tools.debug("Paste-as-keys:", text); + tools.debug("HID: paste-as-keys:", text); var index = 0; var iterate = function() { |