Skip to content

Commit 6ef8a31

Browse files
authored
Merge pull request #523 from Iterable/MOB-5695]---Warn-instead-of-error-for-checkSDKinitialization
[MOB - 5695] Log warn instead of error
2 parents 1e5f02c + c463f63 commit 6ef8a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ private boolean isInitialized() {
308308

309309
private boolean checkSDKInitialization() {
310310
if (!isInitialized()) {
311-
IterableLogger.e(TAG, "Iterable SDK must be initialized with an API key and user email/userId before calling SDK methods");
311+
IterableLogger.w(TAG, "Iterable SDK must be initialized with an API key and user email/userId before calling SDK methods");
312312
return false;
313313
}
314314
return true;

0 commit comments

Comments
 (0)