Skip to content

Commit 4aabbc4

Browse files
removed logging statements
1 parent ceae29e commit 4aabbc4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/android/io/branch/BranchSDK.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@ public BranchSDK() {
6969
*/
7070
@Override
7171
protected void pluginInitialize() {
72-
PrefHelper.Debug("pluginInitialize");
7372

7473
this.activity = this.cordova.getActivity();
75-
// Branch.enableLogging();
7674
Branch.disableInstantDeepLinking(true);
7775
BranchUtil.setPluginType(BranchUtil.PluginType.CordovaIonic);
7876
if (this.instance == null) {
@@ -294,7 +292,6 @@ private void initSession(CallbackContext callbackContext) {
294292
}
295293

296294
this.sessionListener = new SessionListener(callbackContext);
297-
PrefHelper.Debug("BranchSDK.initSession");
298295
this.instance.initSession(this.sessionListener, data, activity);
299296
}
300297

@@ -304,7 +301,6 @@ private void reInitSession() {
304301
}
305302

306303
this.activity = this.cordova.getActivity();
307-
PrefHelper.Debug("BranchSDK.reInitSession");
308304
this.instance.reInitSession(this.activity, this.sessionListener);
309305
}
310306

@@ -992,7 +988,6 @@ public void onInitFinished(JSONObject referringParams, BranchError error) {
992988

993989
if (error == null && referringParams != null) {
994990
if (this._callbackContext != null) {
995-
PrefHelper.Debug("success returning referringParams = " + referringParams);
996991
this._callbackContext.success(referringParams);
997992
}
998993
} else {
@@ -1003,7 +998,6 @@ public void onInitFinished(JSONObject referringParams, BranchError error) {
1003998
e.printStackTrace();
1004999
}
10051000
if (this._callbackContext != null) {
1006-
PrefHelper.Debug("fail returning error = " + error.getMessage());
10071001
this._callbackContext.error(message);
10081002
}
10091003
}

0 commit comments

Comments
 (0)