Skip to content

Commit 3dd5565

Browse files
committed
Logging with Ln in a static method makes problems, back to Ln
1 parent 5c9baaa commit 3dd5565

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/src/main/java/com/donnfelker/android/bootstrap/ui/view/CapitalizedTextView.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
import android.graphics.Typeface;
55
import android.os.Build;
66
import android.util.AttributeSet;
7+
import android.util.Log;
78
import android.widget.Button;
89

9-
import com.donnfelker.android.bootstrap.util.Ln;
10-
1110
import java.util.Hashtable;
1211
import java.util.Locale;
1312

@@ -64,7 +63,7 @@ public static Typeface getTypeFace(Context c, String assetPath) {
6463
assetPath);
6564
cache.put(assetPath, t);
6665
} catch (Exception e) {
67-
Ln.e(e, "Could not get typeface '" + assetPath);
66+
Log.e(TAG, "Could not get typeface '" + assetPath, e);
6867
return null;
6968
}
7069
}

0 commit comments

Comments
 (0)