Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Mullvad Browser
Commits
157bb23b
Commit
157bb23b
authored
11 years ago
by
Eitan Isaacson
Browse files
Options
Downloads
Patches
Plain Diff
Bug 937775 - Make AccessFu logging less verbose by default. r=yzen
parent
1ede7fc4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
accessible/src/jsat/AccessFu.jsm
+6
-7
6 additions, 7 deletions
accessible/src/jsat/AccessFu.jsm
accessible/src/jsat/EventManager.jsm
+2
-2
2 additions, 2 deletions
accessible/src/jsat/EventManager.jsm
accessible/src/jsat/TouchAdapter.jsm
+2
-2
2 additions, 2 deletions
accessible/src/jsat/TouchAdapter.jsm
with
10 additions
and
11 deletions
accessible/src/jsat/AccessFu.jsm
+
6
−
7
View file @
157bb23b
...
...
@@ -86,7 +86,7 @@ this.AccessFu = {
Cu.import('resource://gre/modules/accessibility/TouchAdapter.jsm');
Cu.import('resource://gre/modules/accessibility/Presentation.jsm');
Logger.info('
e
nable');
Logger.info('
E
nable
d
');
for each (let mm in Utils.AllMessageManagers) {
this._addMessageListeners(mm);
...
...
@@ -145,7 +145,7 @@ this.AccessFu = {
this._enabled = false;
Logger.info('
d
isable');
Logger.info('
D
isable
d
');
Utils.win.document.removeChild(this.stylesheet.get());
...
...
@@ -524,9 +524,8 @@ var Output = {
for (let action of aActions) {
let window = Utils.win;
Logger.info('tts.' + action.method,
'"' + action.data + '"',
JSON.stringify(action.options));
Logger.debug('tts.' + action.method, '"' + action.data + '"',
JSON.stringify(action.options));
if (!action.options.enqueue && this.webspeechEnabled) {
window.speechSynthesis.cancel();
...
...
@@ -715,8 +714,8 @@ var Input = {
_handleGesture: function _handleGesture(aGesture) {
let gestureName = aGesture.type + aGesture.touches.length;
Logger.
info
('Gesture', aGesture.type,
'(fingers: ' + aGesture.touches.length + ')');
Logger.
debug
('Gesture', aGesture.type,
'(fingers: ' + aGesture.touches.length + ')');
switch (gestureName) {
case 'dwell1':
...
...
This diff is collapsed.
Click to expand it.
accessible/src/jsat/EventManager.jsm
+
2
−
2
View file @
157bb23b
...
...
@@ -46,7 +46,7 @@ this.EventManager.prototype = {
start: function start() {
try {
if (!this._started) {
Logger.
info
('EventManager.start'
, Utils.MozBuildApp
);
Logger.
debug
('EventManager.start');
this._started = true;
...
...
@@ -73,7 +73,7 @@ this.EventManager.prototype = {
if (!this._started) {
return;
}
Logger.
info
('EventManager.stop'
, Utils.MozBuildApp
);
Logger.
debug
('EventManager.stop');
AccessibilityEventObserver.removeListener(this);
try {
this.webProgress.removeProgressListener(this);
...
...
This diff is collapsed.
Click to expand it.
accessible/src/jsat/TouchAdapter.jsm
+
2
−
2
View file @
157bb23b
...
...
@@ -46,7 +46,7 @@ this.TouchAdapter = {
SYNTH_ID: -1,
start: function TouchAdapter_start() {
Logger.
info
('TouchAdapter.start');
Logger.
debug
('TouchAdapter.start');
this._touchPoints = {};
this._dwellTimeout = 0;
...
...
@@ -64,7 +64,7 @@ this.TouchAdapter = {
},
stop: function TouchAdapter_stop() {
Logger.
info
('TouchAdapter.stop');
Logger.
debug
('TouchAdapter.stop');
let target = Utils.win;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment