com.nostra13.universalimageloader.utils
Class L

java.lang.Object
  extended by com.nostra13.universalimageloader.utils.L

public final class L
extends Object

"Less-word" analog of Android logger

Since:
1.6.4
Author:
Sergey Tarasevich (nostra13[at]gmail[dot]com)

Method Summary
static void d(String message, Object... args)
           
static void disableLogging()
          Deprecated. Use writeLogs(false) instead
static void e(String message, Object... args)
           
static void e(Throwable ex)
           
static void e(Throwable ex, String message, Object... args)
           
static void enableLogging()
          Deprecated. Use writeLogs(true) instead
static void i(String message, Object... args)
           
static void w(String message, Object... args)
           
static void writeDebugLogs(boolean writeDebugLogs)
          Enables/disables detail logging of ImageLoader work.
static void writeLogs(boolean writeLogs)
          Enables/disables logging of ImageLoader completely (even error logs).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

enableLogging

@Deprecated
public static void enableLogging()
Deprecated. Use writeLogs(true) instead

Enables logger (if disableLogging() was called before)


disableLogging

@Deprecated
public static void disableLogging()
Deprecated. Use writeLogs(false) instead

Disables logger, no logs will be passed to LogCat, all log methods will do nothing


writeDebugLogs

public static void writeDebugLogs(boolean writeDebugLogs)
Enables/disables detail logging of ImageLoader work. Consider disableLogging() to disable ImageLoader logging completely (even error logs)
Debug logs are disabled by default.


writeLogs

public static void writeLogs(boolean writeLogs)
Enables/disables logging of ImageLoader completely (even error logs).


d

public static void d(String message,
                     Object... args)

i

public static void i(String message,
                     Object... args)

w

public static void w(String message,
                     Object... args)

e

public static void e(Throwable ex)

e

public static void e(String message,
                     Object... args)

e

public static void e(Throwable ex,
                     String message,
                     Object... args)


Copyright © 2011-2014. All Rights Reserved.