My application has a homebrew logging class that I\'m migrating to using log4j under the covers. However, since I\'m using the homebrew class to pass the rest of the applica
This should do it:
class Logger2 { Logger _log4JLogger; public void log(Object msg) { _log4JLogger.log(Logger2.class.getName(), Priority.INFO, msg, null); } }