Dave King

Results 5 comments of Dave King

Also running into this issue. Anyone know the last version that this worked on?

@alestiago: All I did was run the build on a windows machine, that produces a docker file with \ used in the file paths and then when you try to...

I'd second this, it seems to logging a info level by default. Would very much like to turn down the noise.

Logger l = Logger.getLogger(""); l.setLevel(Level.SEVERE) Fixed it for me, I'm not using the default java logger anywhere else in the system, so messing with the root logger was not an...

Logger l = Logger.getLogger("com.linkedin.paldb"); l.setLevel(Level.SEVERE) also does the trick and won't mess up other logging.