OpenLiberty / liberty-language-server

The Liberty Config Language Server provides language server features for Liberty server configuration files through any of the supported client IDEs.
Eclipse Public License 2.0
5 stars 11 forks source link

LibertyTextDocument puts a lot of info in the log #266

Closed turkeylurkey closed 7 months ago

turkeylurkey commented 7 months ago

As I edit my properties file in IntelliJ this language server prints the whole file to the log every time I make a change. This seems like too much output when there isn't an error.

Could you remove this log statement and only print something if there is an error or a warning is needed?

LibertyTextDocument: LOGGER.info(last.getText());

cherylking commented 7 months ago

This seems like a mistake. It was probably for debugging and slipped in.

turkeylurkey commented 7 months ago

At first I thought it was my own debugging log!