I have some webservices in my application and i want to log them to diferent files, based on the webservice name. For that i am creating loggers with
myLogger = Logger.getLogger(logKey);
I am wondering if i should cache these loggers to avoid creating them for every call, or can i ignore the overhead.