I am using log4j
to write all the logs in a file.
i have 2 different java projects say proj1
and proj2
, where project1
is required project for proj2
. I have added proj1
as a dependency for proj2
.
proj1 has log4j
setup done and is working fine.
Now my problem is when I am running a method in proj2
, it will call proj1
as well.
So I want to have a single logfile for both the projects.
Any input please?