|
|
@@ -11,6 +11,7 @@ import kr.co.zumo.app.lifeplus.bean.MobileAuthBean;
|
|
|
import kr.co.zumo.app.lifeplus.bean.api.LifeplusAPIBean;
|
|
|
import kr.co.zumo.app.lifeplus.model.Model;
|
|
|
import kr.co.zumo.app.lifeplus.model.SuperModel;
|
|
|
+import kr.co.zumo.app.lifeplus.util.AppUtil;
|
|
|
import kr.co.zumo.app.lifeplus.view.Event;
|
|
|
|
|
|
/**
|
|
|
@@ -83,8 +84,10 @@ public class SignUpMobileAuthModel extends Model {
|
|
|
MobileAuthBean mobileAuthBean = event.fromJson(MobileAuthBean.class);
|
|
|
LifeplusAPIBean resultBean = new Gson().fromJson(event.getString(), LifeplusAPIBean.class);
|
|
|
|
|
|
- Log.w("APP# SignUpMobileAuthPresenter | onEventInternal", "| 인증 결과: " + resultBean.toPrettyJson());
|
|
|
- Log.w("APP# SignUpMobileAuthPresenter | onEventInternal", "| 유저 데이터: " + mobileAuthBean.toPrettyJson());
|
|
|
+ if (AppUtil.isDebug()) {
|
|
|
+ Log.w("APP# SignUpMobileAuthPresenter | onEventInternal", "| 인증 결과: " + resultBean.toPrettyJson());
|
|
|
+ Log.w("APP# SignUpMobileAuthPresenter | onEventInternal", "| 유저 데이터: " + mobileAuthBean.toPrettyJson());
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 2. 성공 시 PROCESS 진입
|