In GWT, one can create a custom logging area by installing a HasWidgetsLogHandler
. In my case, that is a VerticalPanel
. Unfortunately, the rest of the page is distorted by the logging output, which is too wide. How can I wrap the lines?
HasWidgetsLogHandler
adds an HTML
element for each log entry. I tried styling the individual elements in UiBinder, but that did not work:
<ui:style>
@external gwt-HTML;
.gwt-HTML {
white-space: normal;
}
</ui:style>
Similarly, adding overflow: hidden
—which would have been a less attractive option—had no effect.
Thank you for any pointers.