Removed some logging

This commit is contained in:
Zakary Timson 2019-09-02 18:41:35 -04:00
parent 66cc2cabdb
commit 5572bd888f

View File

@ -25,10 +25,6 @@ export class PhysicsService {
console.log('Orientation:', orientation); console.log('Orientation:', orientation);
this.orientation.next(orientation); this.orientation.next(orientation);
}); });
window.addEventListener('devicemotion', motion => {
console.log('Motion:', motion);
this.motion.next(motion);
});
navigator.geolocation.watchPosition(position => { navigator.geolocation.watchPosition(position => {
console.log('GPS:', position); console.log('GPS:', position);
this.position.next(position); this.position.next(position);