Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
guperrot committed Nov 16, 2018
1 parent 432c37c commit 0b69ca2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ private synchronized void setInstanceUserId(String userId) {
return;
}
if (mTransmissionTargetToken != null && !USER_ID_ONE_COLLECTOR_PATTERN.matcher(userId).matches()) {
AppCenterLog.error(LOG_TAG, "userId is must match " + USER_ID_ONE_COLLECTOR_PATTERN);
AppCenterLog.error(LOG_TAG, "userId must match the " + USER_ID_ONE_COLLECTOR_PATTERN + " regular expression.");
return;
}
}
Expand Down

0 comments on commit 0b69ca2

Please sign in to comment.