Skip to content

Commit

Permalink
Add the name of the class that gets the anonID regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloercoli committed Aug 6, 2015
1 parent 72bb6d7 commit c1ea6ac
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ String generateNewAnonID() {
builder.append(currentPart);
}
uuid = builder.toString();
AppLog.d(AppLog.T.STATS, "New anon ID generated: " + uuid);
AppLog.d(AppLog.T.STATS, "New anonID generated in " + this.getClass().getSimpleName() + ": " + uuid);

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext);
final SharedPreferences.Editor editor = preferences.edit();
Expand Down

0 comments on commit c1ea6ac

Please sign in to comment.