Skip to content

Commit 537dfd2

Browse files
committed
Remove debug logging
1 parent 966c1dd commit 537dfd2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/screen.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export function findScreenBearing(boundingRectangleBearing: number, preferredBea
5151
}
5252

5353
// Rotate the bearing 180 degrees if the preferred bearing is on the opposite side of the screen
54-
console.log(bearing < (preferredBearing - 90) % 360, bearing > (preferredBearing + 90) % 360);
5554
if (bearing < (preferredBearing - 90) % 360 || bearing > (preferredBearing + 90) % 360) {
5655
bearing = (bearing + 180) % 360;
5756
}

0 commit comments

Comments
 (0)