Skip to content

Commit

Permalink
fix: downgrade error log to debug (mParticle#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
willpassidomo committed Mar 2, 2022
1 parent cba576f commit 293ce35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android-core/src/main/java/com/mparticle/MParticle.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private static MParticle getInstance(@NonNull Context context, @NonNull MParticl
@Nullable
public static MParticle getInstance() {
if (instance == null) {
Logger.error("Failed to get MParticle instance, getInstance() called prior to start().");
Logger.debug("Failed to get MParticle instance, getInstance() called prior to start().");
return null;
}
return getInstance(null, null);
Expand Down

0 comments on commit 293ce35

Please sign in to comment.