[小代码]正确的日志

从不使用愚蠢的debuging等级,异常应该总是报出ERROR错误而不是debugging……

public class MyApp {

  private static final String LOG_TAG = MyApp.class.getSimpleName();

  public void somethingsWrong() {
    Object obj = null;
    try {
      obj.toString();
    } catch (NullPointerException npe) {
      Log.e(LOG_TAG, "Object is null");
    }
  }
}


你可能感兴趣的:(android,debugging)