Have some Python code that is interacting with a JVM via the jpype package. The code in the JVM has some overly verbose logging that is getting dumped to the console and I would like to suppress it, preferably by setting the logging display level to some desired value Like WARNING or Error.
Looks like the Java code is just java.util.logging
Was able to just do (in the Python code):
But only because I was able to find the name of the logger in the Java code