I have adapted some java sources but I have detected an issue and I don't know the possible solution solving easily my problem.
I have 2 java class: The first class GCRProperties.java check more easily variables from properties files or environment variable. The second class GCRLogger.java retrieve data from GCRProperties before logging (DEBUG, INFO....).
This solution worked perfectly but I want using class GCRLogger in GCRProperties to log the execution of this class.
At this time, when I want compile GCRProperties, GCRLogger is mandatory and when I want compile GCRLogger, GCRProperties is mandatory.
I'm not a java expert and before implementing an unstable solution, I prefer listening Java experts to have a good solution.
Thanks Gilles