am bdf1706a: Merge "Reduce logging." into gingerbread

Merge commit 'bdf1706ac680c0fe74765b8d6d34823b8ac05306' into gingerbread-plus-aosp

* commit 'bdf1706ac680c0fe74765b8d6d34823b8ac05306':
  Reduce logging.
This commit is contained in:
Joe Onorato
2010-10-19 12:29:43 -07:00
committed by Android Git Automerger
15 changed files with 76 additions and 67 deletions

View File

@@ -1094,7 +1094,9 @@ public class HierarchicalStateMachine {
* @param msg that couldn't be handled.
*/
protected void unhandledMessage(Message msg) {
Log.e(TAG, mName + " - unhandledMessage: msg.what=" + msg.what);
if (false) {
Log.e(TAG, mName + " - unhandledMessage: msg.what=" + msg.what);
}
}
/**