GM log: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
(Removed level argument - apparently not supported, see discussion.)
(Update for 4.0)
 
(26 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{underscore|title=GM_log}}
As of Greasemonkey 4.0, this method has been removed.  
 
You should use the [https://developer.mozilla.org/en-US/docs/Web/API/console.log console] instead.
= Syntax =
 
'''GM_log(''' ''message'' ''')'''
 
= Description =
 
Allows script authors simple access to logging informational messages in the Error Console.
This can be helpful for debugging.
 
The ''message'' string is required.
 
= Examples =
 
GM_log("Hello, World!");
GM_log("Warning, " + someInputField.value + "!");
 
= Notes =
 
GM_log is available in [[Greasemonkey]] version 0.3 and later.
 
= GM_log and Firebug =
Since Firebug 1.0, extensions.firebug.showChromeMessages must be set to true for GM_log messages to show up in the Firebug console.
 
[[Category:API Reference|L]]

Latest revision as of 15:03, 3 November 2017

As of Greasemonkey 4.0, this method has been removed. You should use the console instead.