Lines Matching refs:Log

47 import android.util.Log;
111 if (Log.isLoggable(TAG, Log.VERBOSE)) {
112 Log.v(TAG, "updating time");
180 if (Log.isLoggable(TAG, Log.DEBUG)) { in onCreate()
181 Log.d(TAG, "onCreate"); in onCreate()
242 if (Log.isLoggable(TAG, Log.DEBUG)) { in onVisibilityChanged()
243 Log.d(TAG, "onVisibilityChanged: " + visible); in onVisibilityChanged()
287 if (Log.isLoggable(TAG, Log.DEBUG)) { in onApplyWindowInsets()
288 Log.d(TAG, "onApplyWindowInsets: " + (insets.isRound() ? "round" : "square")); in onApplyWindowInsets()
323 if (Log.isLoggable(TAG, Log.DEBUG)) { in onPropertiesChanged()
324 Log.d(TAG, "onPropertiesChanged: burn-in protection = " + burnInProtection in onPropertiesChanged()
332 if (Log.isLoggable(TAG, Log.DEBUG)) { in onTimeTick()
333 Log.d(TAG, "onTimeTick: ambient = " + isInAmbientMode()); in onTimeTick()
343 if (Log.isLoggable(TAG, Log.DEBUG)) { in onAmbientModeChanged()
344 Log.d(TAG, "onAmbientModeChanged: " + inAmbientMode); in onAmbientModeChanged()
435 if (Log.isLoggable(TAG, Log.DEBUG)) { in updateTimer()
436 Log.d(TAG, "updateTimer"); in updateTimer()
453 if (Log.isLoggable(TAG, Log.DEBUG)) { in getTotalSteps()
454 Log.d(TAG, "getTotalSteps()"); in getTotalSteps()
474 if (Log.isLoggable(TAG, Log.DEBUG)) { in onConnected()
475 Log.d(TAG, "mGoogleApiAndFitCallbacks.onConnected: " + connectionHint); in onConnected()
496 Log.i(TAG, "Existing subscription for activity detected."); in subscribeToSteps()
498 Log.i(TAG, "Successfully subscribed!"); in subscribeToSteps()
501 Log.i(TAG, "There was a problem subscribing."); in subscribeToSteps()
509 if (Log.isLoggable(TAG, Log.DEBUG)) { in onConnectionSuspended()
510 Log.d(TAG, "mGoogleApiAndFitCallbacks.onConnectionSuspended: " + cause); in onConnectionSuspended()
516 if (Log.isLoggable(TAG, Log.DEBUG)) { in onConnectionFailed()
517 Log.d(TAG, "mGoogleApiAndFitCallbacks.onConnectionFailed: " + result); in onConnectionFailed()
523 if (Log.isLoggable(TAG, Log.DEBUG)) { in onResult()
524 Log.d(TAG, "mGoogleApiAndFitCallbacks.onResult(): " + dailyTotalResult); in onResult()
535 Log.d(TAG, "steps updated: " + mStepsTotal); in onResult()
538 Log.e(TAG, "onResult() failed! " + dailyTotalResult.getStatus().getStatusMessage()); in onResult()