I used proguard to obfuscate a jar and after research the resulting jar it was found that it didn't obfuscate logger messages which I probably would like to do.
How to do it with proguard? I used gui based tool with allmost default settings.
original class
logger.info("value encrypted");
after proguard and decompiled
this.c.info("value encrypted");