DO NOT MERGE: remove miscellaneous logging

Change-Id: Id5ca513228e87b3d3b4e66ad34537ed454c65ad2
This commit is contained in:
Julius D'souza
2016-10-14 14:45:40 -07:00
parent c4e1e4909d
commit 897373916f

View File

@@ -321,7 +321,6 @@ class AutomaticBrightnessController {
mLightSensorEnabled = false;
mRecentLightSamples = 0;
mHandler.removeMessages(MSG_UPDATE_AMBIENT_LUX);
Slog.d(TAG, "disabling light sensor");
mSensorManager.unregisterListener(mLightSensorListener);
}
}
@@ -349,7 +348,6 @@ class AutomaticBrightnessController {
}
mAmbientLightRingBuffer.prune(time - mAmbientLightHorizon);
mAmbientLightRingBuffer.push(time, lux);
Slog.d(TAG, "pushing lux: " + lux);
// Remember this sample value.
mLastObservedLux = lux;