I am currently using GWT’s built in logger, however the way it is attached to the RootPanel is awkward, and it is usually obscured by any panels placed on top. Does anybody know how to move it? I never attached it to the main panel, it seems like it attaches itself. Thanks.
Share
https://developers.google.com/web-toolkit/doc/latest/DevGuideLogging#Different_Types_of_Handlers
Just use
where customLogArea can be anything that implements HasWidgets (e.g. a FlowPanel, a RootPanel, …). This allows you to create the log area in your HTML page, in your code or in uiBinder. Also, you can style it any way you like (using CSS or code).