Customizing Debugger Window

Hi guys,

Is it possible to extend and customize debugger window (to add a new tab for server side logging) and if it is can you please give me some tips & tricks how to do that?

Thanks,
Davor

In case you haven’t resolved this yet: see e.g. com.vaadin.client.debug.internal.InfoSection or LogSection, and use VDebugWindow.addSection(Section) like ApplicationConfiguration.onModuleLoad() does for the standard sections.

If you want to show server side logs, I’d recommend spending some time thinking about what you want to send from the server to the client, how and how to limit the amount of data transferred/stored on the client.