GM log: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
No edit summary
Line 28: Line 28:
GM_log is available in [[Greasemonkey]] version 0.3 and later.
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]]
[[Category:API Reference|L]]

Revision as of 17:59, 16 March 2007

Template:Underscore

Syntax

GM_log( message, level )

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.

The level is optional and defaults to 0. Valid values are:

0
info
1
warning
2
error

Examples

GM_log("Hello, World!");
GM_log("Warning, " + someInputField.value + "!", 2);

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.