Skip to content

Instantly share code, notes, and snippets.

@jorgenpt
Created November 29, 2011 02:14
Show Gist options
  • Save jorgenpt/1403057 to your computer and use it in GitHub Desktop.
Save jorgenpt/1403057 to your computer and use it in GitHub Desktop.
Log.i(LOG_TAG, "arguments[" + key + "] = (int)" + Integer.toString(arguments.getInt(key)));
// Prints: arguments[stride] = (int)0
Log.i(LOG_TAG, "arguments[" + key + "] = (String)\"" + arguments.getString(key) + "\"");
// Prints: arguments[stride] = (String)"1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment