@NotNull public static java.lang.String LOG_DIRECTORY
@NotNull public static java.lang.String LOG_EXTENSION
public static io.scanbot.sdk.util.log.DebugLog.Companion Companion
public DebugLog(@Nullable
android.content.Context context)
Enables logging to system log/sdcard file.
public void d(@Nullable
java.lang.String tag,
@Nullable
java.lang.String message)
Writes tag and message to the log file and also calls Log.d with given params.
public void w(@Nullable
java.lang.String tag,
@Nullable
java.lang.String message)
Writes tag and message to the log file and also calls Log.w with given params.
public void e(@Nullable
java.lang.String tag,
@Nullable
java.lang.String message)
Writes tag and message to the log file and also calls Log.e with given params.
public void i(@Nullable
java.lang.String tag,
@Nullable
java.lang.String message)
Writes tag and message to the log file and also calls Log.i with given params.
public void e(@Nullable
java.lang.String tag,
@Nullable
java.lang.String where,
@NotNull
java.lang.Throwable e)
Writes a message about exception to system log and to the file.
tag - tag stringwhere - a string describing where the exception happenede - an exception which class name and message will be saved in logpublic void d(@Nullable
java.lang.String message)
public void i(@Nullable
java.lang.String message)
public void w(@Nullable
java.lang.String message)
public void e(@Nullable
java.lang.String message)
public void logException(@Nullable
java.lang.Throwable e)
Shows log for exception
e - Throwable for this error
public void logMethod()
Shows log for invoked method