Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da3a453b authored by Yao Lu's avatar Yao Lu Committed by Android (Google) Code Review
Browse files

Merge "Modify log message to avoid logging null String" into ub-contactsdialer-g-dev

parents 5725d88c 5d1ee914
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -87,11 +87,11 @@ public abstract class Logger {
        final Logger logger = getInstance();
        if (logger != null) {
            final QuickContactEvent event = new QuickContactEvent();
            event.referrer = referrer;
            event.referrer = referrer == null ? "Unknown" : referrer;
            event.contactType = contactType;
            event.cardType = cardType;
            event.actionType = actionType;
            event.thirdPartyAction = thirdPartyAction;
            event.thirdPartyAction = thirdPartyAction == null ? "" : thirdPartyAction;
            logger.logQuickContactEventImpl(event);
        }
    }