diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-05 19:37:54 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-05 19:37:54 -0500 |
commit | b1e8834f3b9a453784255a654e2741d679a3ff04 (patch) | |
tree | 17e9e751ca9b2cc583d1780fa686eb0b98202988 /common/content/dactyl.js | |
parent | 3a3f011fc92bfabc7f50699221f418630c235371 (diff) | |
download | pentadactyl-b1e8834f3b9a453784255a654e2741d679a3ff04.tar.gz |
Try not to break things on :rehash for users running from the repo.
Diffstat (limited to 'common/content/dactyl.js')
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 94045c14..870d07b7 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -934,7 +934,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { * @param {number} level The logging level 0 - 15. */ log: function (msg, level) { - let verbose = prefs.get("extensions.dactyl.loglevel", 0); + let verbose = localPrefs.get("loglevel", 0); if (!level || level <= verbose) { if (isObject(msg)) |