|
@@ -1,6 +1,7 @@
|
|
|
package com.cooleshow.base.common;
|
|
|
|
|
|
import android.text.TextUtils;
|
|
|
+import android.util.Log;
|
|
|
|
|
|
import com.cooleshow.base.BuildConfig;
|
|
|
|
|
@@ -20,6 +21,7 @@ public abstract class WebConstants {
|
|
|
|
|
|
public static String getWebSocketUrl() {
|
|
|
if (TextUtils.equals("preRelease", BuildConfig.BUILD_TYPE)) {
|
|
|
+ Log.i("WebConstants", "return webSocket:" + WEB_SOCKET_URL_PRERELEASE);
|
|
|
return WEB_SOCKET_URL_PRERELEASE;
|
|
|
}
|
|
|
if (BuildConfig.DEBUG) {
|