This commit is contained in:
kehaoyuan
2019-07-18 16:19:37 +08:00
parent 629fa23237
commit 904b74be5b
13 changed files with 66 additions and 15 deletions

View File

@ -18,6 +18,7 @@ import com.gh.common.util.PackageUtils;
import com.gh.common.util.RunningUtils;
import com.gh.common.util.ShareUtils;
import com.gh.common.util.StringUtils;
import com.gh.gamecenter.BuildConfig;
import com.gh.gamecenter.LoginActivity;
import com.gh.gamecenter.R;
import com.gh.gamecenter.SuggestionActivity;
@ -107,7 +108,10 @@ public abstract class BaseActivity extends BaseToolBarActivity implements EasyPe
if (TextUtils.isEmpty(mEntrance)) {
mEntrance = Constants.ENTRANCE_UNKNOWN;
}
Utils.log("ENTRANCE -> " + mEntrance);
if (BuildConfig.DEBUG) {
Utils.log("ACTIVITY_ENTRANCE -> " + mEntrance);
}
}
@Override