Exclude broken gcal logging

I am using openhab 2.2 on Windows 10 with the gcal binding. Because I’m running on windows I’m getting these kind of warnings in my log:

2018-03-12 12:59:20.670 [WARN ] [ient.util.store.FileDataStoreFactory] - unable to change permissions for owner:

I would like to remove these warnings. I tried doing that by modifying org.apache.karaf.log.cfg with:

log4j2.logger.test.name = ient.util.store
log4j2.logger.test.level = ERROR

But the warnings keep being logged to the openhab.log file so I’m doing something wrong. I just can’t figure what I’m doing wrong. I’m guessing it’s something silly I’m overlooking but I can’t seem to find it. Anyone got any tips?

I fixed it in the end by changing it to this:

log4j2.logger.ientUtilStoreFileDataStoreFactory.name = com.google.api.client.util.store.FileDataStoreFactory
log4j2.logger.ientUtilStoreFileDataStoreFactory.level = ERROR
log4j2.logger.ientUtilStoreFileDataStoreFactory.additivity = false
log4j2.logger.ientUtilStoreFileDataStoreFactory.appenderRefs = out
log4j2.logger.ientUtilStoreFileDataStoreFactory.appenderRef.out.ref = LOGFILE

Turns out the openhab log didn’t log the full package name.