Skip to content

Commit 193bca1

Browse files
committed
Fix logging of exception stacktrace
1 parent 1547894 commit 193bca1

File tree

1 file changed

+1
-1
lines changed
  • AndroidSDKCore/src/main/java/com/leanplum/internal

1 file changed

+1
-1
lines changed

AndroidSDKCore/src/main/java/com/leanplum/internal/Log.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public static void exception(Throwable throwable) {
103103
Request request = RequestBuilder.withLogAction()
104104
.andParam(Constants.Params.TYPE, Constants.Values.SDK_LOG)
105105
.andParam(Constants.Params.VERSION_NAME, versionName)
106-
.andParam(Constants.Params.MESSAGE, writer.toString())
106+
.andParam(Constants.Params.MESSAGE, stringWriter.toString())
107107
.create();
108108
RequestSender.getInstance().send(request);
109109
} catch (Throwable t2) {

0 commit comments

Comments
 (0)