Git Product home page Git Product logo

Comments (3)

ZeroOne3010 avatar ZeroOne3010 commented on July 24, 2024

Hi Nathan, thanks for your feedback! 😃 The project is using the java.util.logging system. This blog post has an easy and working method to disable those logs altogether: LogManager.getLogManager().reset();. I just tried it, it seems to work. Apparently you can also control the log levels with a file called logging.properties, you might want to look into that as well.

The issue here is that the message that tells you to push the button is logged using .... System.out.println. 😑 Lame, I know! I'll change that to use the logger that you can then turn off. Would that work for you?

from yetanotherhueapi.

NathanSweet avatar NathanSweet commented on July 24, 2024

LogManager.getLogManager().reset(); seems to work. That kills all JUL logging, feels a bit extreme.

A logging.properties file has never been a good idea. Where to put it? What happens when there are multiple on the classpath? How to be sure mine is used? A JVM argument... noooo. They managed to make even logging hard! :p

This is slightly better:

Arrays.stream(LogManager.getLogManager().getLogger("").getHandlers()).forEach(h -> h.setLevel(Level.WARNING));

You'd think it'd be possible to get the specific logger and configure just that, but I couldn't figure it out.

That plus changing the sysout and I'm happy. :) Cheers!

from yetanotherhueapi.

ZeroOne3010 avatar ZeroOne3010 commented on July 24, 2024

Version 2.6.0 is being deployed into the repository as I type. I've replaced System.outs with loggers, and unified all loggers to use the same name. You may test it now.

from yetanotherhueapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.