Labs/Jetpack/API
Jump to navigation
Jump to search
JetPack API Reference
JetPack is a project to explore new and innovative approaches to extensibility of the browser.
Logger
Used to output debugging information, it appears in the Javascript Error Console. You can access it from the Tools menu.
log( message )
orlog({message: string})
. Shows a log message in the Error Console.debug( message )
ordebug({message: string})
. Shows a debug message in the Error Console.info( message )
orinfo({message: string})
. Shows an info message in the Error Console.warn( message )
orwarn({message: string})
. Shows a warning in the Error Console.error( message )
orerror({message: string})
. Shows an error message in the Error Console.