koraktor / steam-condenser

A multi-language library for querying the Steam Community, Source, GoldSrc servers and Steam master servers
https://koraktor.de/steam-condenser
Other
356 stars 67 forks source link

disable logging #316

Closed BrutalCSkakan closed 6 years ago

BrutalCSkakan commented 6 years ago

Hello! Is there a way for me to disable the logging that is going on in the console? It really messes up other debugging logs

koraktor commented 6 years ago

What language are you using?

You might want to have a look at issues #186 and (for PHP) #266.

BrutalCSkakan commented 6 years ago

Oh yeah I forgot that there's multiple language support.

This is java, and its these logs that Im talking about

BrutalCSkakan commented 6 years ago

image

koraktor commented 6 years ago

The stable Java implementation uses java.util.logging. You can reduce the log level, for example:

Logger.getLogger("com.github.koraktor.steamcondenser").setLevel(Level.WARN);
koraktor commented 6 years ago

@BrutalCSkakan Did the code above help?