mogutt / TTAndroidClient

The android client of mogutt
http://tt.mogu.io/
742 stars 283 forks source link

right now, logger.e(logger.e(e.getMessage());) would crash the app #9

Open tshirtmanid opened 10 years ago

tshirtmanid commented 10 years ago

RC: public void e(String format, Object... args) { if (displayFlag && logLevel <= Log.ERROR) { lock.lock(); String message = createMessage(String.format(format, args)); Log.e(tagName, message); lock.unlock(); } }

args is null