2010-08-17 00:36:24 +02:00
|
|
|
package net.osmand;
|
2010-05-05 11:31:54 +02:00
|
|
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* That class is replacing of standard LogFactory due to
|
|
|
|
* problems with Android implementation of LogFactory.
|
|
|
|
* See Android analog of LogUtil
|
|
|
|
*
|
|
|
|
* That class should be very simple & always use LogFactory methods,
|
|
|
|
* there is an intention to delegate all static methods to LogFactory.
|
|
|
|
*/
|
|
|
|
public class LogUtil {
|
|
|
|
|
|
|
|
public static Log getLog(Class<?> cl){
|
|
|
|
return LogFactory.getLog(cl);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|