Skip to content

Commit

Permalink
Fix log statement to avoid exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Richelson committed Sep 29, 2016
1 parent ea7ecee commit 1110960
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public JsonElement jsonVariation(String flagKey, JsonElement fallback) {
+ flagKey + " Returning fallback: " + fallback, cce);
}
sendFlagRequestEvent(flagKey, result, fallback);
Log.d(TAG, "jsonVariation: returning variation: " + result.getAsString() + " flagKey: " + flagKey + " user key: " + userManager.getCurrentUser().getKeyAsString());
Log.d(TAG, "jsonVariation: returning variation: " + result + " flagKey: " + flagKey + " user key: " + userManager.getCurrentUser().getKeyAsString());
return result;
}

Expand Down

0 comments on commit 1110960

Please sign in to comment.