Skip to content

Commit c1ea6ac

Browse files
committed
Add the name of the class that gets the anonID regenerated
1 parent 72bb6d7 commit c1ea6ac

File tree

1 file changed

+1
-1
lines changed
  • WordPressAnalytics/src/main/java/org/wordpress/android/analytics

1 file changed

+1
-1
lines changed

WordPressAnalytics/src/main/java/org/wordpress/android/analytics/Tracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ String generateNewAnonID() {
6262
builder.append(currentPart);
6363
}
6464
uuid = builder.toString();
65-
AppLog.d(AppLog.T.STATS, "New anon ID generated: " + uuid);
65+
AppLog.d(AppLog.T.STATS, "New anonID generated in " + this.getClass().getSimpleName() + ": " + uuid);
6666

6767
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext);
6868
final SharedPreferences.Editor editor = preferences.edit();

0 commit comments

Comments
 (0)