Add throwable parameter to Log.w()

When an exception occurs, we might want to log a warning instead of an
error.
This commit is contained in:
Romain Vimont 2021-11-17 10:01:13 +01:00
parent 0672f7e405
commit 4bc5baeeb5

View file

@ -57,13 +57,20 @@ public final class Ln {
}
}
public static void w(String message) {
public static void w(String message, Throwable throwable) {
if (isEnabled(Level.WARN)) {
Log.w(TAG, message);
Log.w(TAG, message, throwable);
System.out.println(PREFIX + "WARN: " + message);
if (throwable != null) {
throwable.printStackTrace();
}
}
}
public static void w(String message) {
w(message, null);
}
public static void e(String message, Throwable throwable) {
if (isEnabled(Level.ERROR)) {
Log.e(TAG, message, throwable);