diff options
author | teramako | 2008-11-19 14:50:10 +0000 |
---|---|---|
committer | teramako | 2008-11-19 14:50:10 +0000 |
commit | d60efc7a74098cbd681d9d9846473485fa97b4a3 (patch) | |
tree | 394254956bdab3ec407179ce6106841097551103 /gmperator.js | |
parent | dde18422f2f269bb27d85e5e04788f8088244742 (diff) | |
download | vimperator-plugins-d60efc7a74098cbd681d9d9846473485fa97b4a3.tar.bz2 |
fix liberator.log
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@24348 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'gmperator.js')
-rw-r--r-- | gmperator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gmperator.js b/gmperator.js index 5606922..da295da 100644 --- a/gmperator.js +++ b/gmperator.js @@ -89,7 +89,7 @@ const Cc = Components.classes; const Ci = Components.interfaces; const gmID = '@greasemonkey.mozdev.org/greasemonkey-service;1'; if (!Cc[gmID]) { - log('Greasemonkey is not installed'); + liberator.log('Greasemonkey is not installed',0); return; } @@ -109,7 +109,7 @@ liberator.plugins.gmperator = (function(){ //{{{ gmCon = new GmContainer(uri,sandbox); containers[panelID] = gmCon; this.__defineGetter__(panelID,function() gmCon); - log('gmpeartor: Registered: ' + panelID + ' - ' + uri, 8); + //liberator.log('gmpeartor: Registered: ' + panelID + ' - ' + uri, 8); } gmCon.sandbox = sandbox; gmCon.addScript(script); |