Konstanin Zgirovskiy

Results 2 issues of Konstanin Zgirovskiy

There are some issues with exception and formatter: 1) ``` Log.useFormat(true); Exception e = new Exception("foo"); Log.d(TAG, "Something bad happened %d, error", 123, e); ``` prints: 'Something bad happened 123,...

Readme says: "API is backwards-compatible with android.util.Log, so you already know it." But there are cases when it's not true, e.g.: 1) `Log.d("mytag", "Hello");` prints: 'D/LogExampleActivity: mytag Hello' instead of...