Skip to content

Commit

Permalink
fix: fix wrong setLogLevels log causing confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
nnabinh committed May 6, 2024
1 parent 5f3a98b commit a7572c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public void setLogLevel(String logLevel, Promise promise) {
Log.d(NAME, "setLogLevel");
promise.resolve(true);
} catch (Exception err) {
Log.e(NAME, "getUnreadConversationCount error:");
Log.e(NAME, "setLogLevel error:");
Log.e(NAME, err.toString());
promise.reject(IntercomErrorCodes.SET_LOG_LEVEL, err.toString());
}
Expand Down

0 comments on commit a7572c6

Please sign in to comment.