Skip to content

Commit b2f9ad5

Browse files
committed
fix build
1 parent b42ef9c commit b2f9ad5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

crates/recording/src/cursor.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,12 @@ pub fn spawn_cursor_recorder(
172172

173173
// Clamp values to ensure they're within valid range
174174
let x = if x.is_nan() || x.is_infinite() {
175-
debug!("X coordinate is invalid: {}", x);
176175
0.5
177176
} else {
178177
x
179178
};
180179

181180
let y = if y.is_nan() || y.is_infinite() {
182-
debug!("Y coordinate is invalid: {}", y);
183181
0.5
184182
} else {
185183
y

0 commit comments

Comments
 (0)