Package com.xuggle.ferry

Examples of com.xuggle.ferry.NativeLogger


  private static final Logger log = LoggerFactory.getLogger(NativeLogger.class);

  public static NativeLogger getLogger(String loggerName)
  {
    log.trace("Native code asked for logger: {}", loggerName);
    NativeLogger retval = null;
    Logger logger = LoggerFactory.getLogger(loggerName);
    if (logger != null)
      retval = new NativeLogger(logger);
    return retval;
  }
View Full Code Here

TOP

Related Classes of com.xuggle.ferry.NativeLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.