diff options
| author | Stephen Blott | 2016-03-06 08:05:08 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-17 14:26:43 +0000 | 
| commit | 452b5bcffbf9ece8648c9e2d2d5649cbcb9193dc (patch) | |
| tree | 34bf5fb86ad0a089a3b2d3715ec17eca40eff75a | |
| parent | 5eae0eebd96357a67853de79a47c01d5e1bd4e3d (diff) | |
| download | vimium-452b5bcffbf9ece8648c9e2d2d5649cbcb9193dc.tar.bz2 | |
Logging; do not log the tab Id.
The frame Ids are sufficiently distinct.  And we do not always have
enough horizontal space to keep log messages on a single line.
| -rw-r--r-- | background_scripts/main.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index 4c5b0a76..5270ef02 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -384,7 +384,7 @@ sendMessageToFrames = (request, sender) ->  # For debugging only. This allows content scripts to log messages to the extension's logging page.  bgLog = (request, sender) -> -  BgUtils.log "#{sender.tab.id}/#{request.frameId} #{request.message}", sender +  BgUtils.log "#{request.frameId} #{request.message}", sender  # Port handler mapping  portHandlers = | 
