So I'm a web developer and would like to develop an extension for GNOME Shell. I found it really easy to step in the development process but I still can't figure out how to debug my extensions. Are there any tools for that purpose? Logging variables and messages, or any kind of real time console like we have on modern browsers environment?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Yes, the real-time console is called "Looking Glass" and can be started by pressing Alt+F2 and typing lg at the prompt.

More info: https://live.gnome.org/GnomeShell/LookingGlass

link|improve this answer
Thanks, that's exactly what I wanted. And it looks far better than I expected. – marcioAlmada Dec 8 '11 at 14:55
Just a small doubt about the lookingGlass: I included global.log('hello world'); inside a loop in my extension but nothing got logged in the console. Can't the extensions log messages programatically? – marcioAlmada Dec 8 '11 at 15:09
I don't know the answer to that; I've never tried writing a shell extension, I only know about LG's existence ;-) – ptomato Dec 9 '11 at 9:53
I've already got the answer. It logs properly but you have to reload the gnome shell environment after any update in the scripts (<kbd>Alt</kbd>+<kbd>F2</kbd> and type r). – marcioAlmada Dec 9 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.