wikisky
wikisky

Reputation: 345

NetBeans8 doesn't coloring GlassFish's output log anymore

Up to version NetBeans 8.0RC1 output log coloring was working just fine. It was coloring fine/finer/finest entries in green, config/info in gray, warning and up in red.

NetBeans 8.0 shows logs in plain black.

I noticed one difference - NB8 started to show log entry levels in lower case, while pervious versions - all upper case.

NetBeans 8.0RC and before: INFO: WEB0169: Created HTTP listener [https-certificate] on host/port [0.0.0.0:8443] WARNING: WEB0309: Unrecognized cipher: TLS_RSA_WITH_AES_256_CBC_SHA ("INFO" line in gray, "WARNING" line in red)

NetBeans 8.0: Info: WEB0169: Created HTTP listener [https-certificate] on host/port [0.0.0.0:8443] Warning: WEB0309: Unrecognized cipher: TLS_RSA_WITH_AES_256_CBC_SHA (all lines in black)

I tried it on GlassFish 3.1.2.2 and GlassFish 4.

Is that a new feature? Do I have to configure colors somehow? Or it's just a bug? Thanks.

Upvotes: 2

Views: 745

Answers (2)

garbi
garbi

Reputation: 11

On Mac OS X (10.9.2), the problem seems to be related to Java 8. That is, when using NetBeans 8 or even 7.4 running on Java 8, I have the problem, but as soon as I switch back to Java 7, output log coloring with Glassfish works fine again on both NetBeans 8 and 7.4.

Upvotes: 1

unwichtich
unwichtich

Reputation: 13857

This should work like before. I use Netbeans 8.0 on Windows and on Ubuntu and it works in both cases as usual (here is a screenshot).

Maybe something has changed your color settings. To set up the colors for the console window right-click in the console window and choose Settings.

If the colors seem to be set up correctly you can nonetheless try the Restore button.

If this doesn't help maybe a clean reinstall may solve the problem or you can try the latest nightly build of Netbeans 8 from http://bits.netbeans.org/dev/nightly/latest/

Upvotes: 0

Related Questions