Skip to content

Commit 259fcb3

Browse files
committed
Remove debug outputs
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 6059506 commit 259fcb3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

rclrs/src/parameter/service.rs

-4
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,6 @@ mod tests {
574574
.create_client::<SetParametersAtomically>("/get_set/node/set_parameters_atomically")?;
575575

576576
try_until_timeout(|| {
577-
println!(" >> testing services");
578577
get_client.service_is_ready().unwrap()
579578
&& set_client.service_is_ready().unwrap()
580579
&& set_atomically_client.service_is_ready().unwrap()
@@ -587,7 +586,6 @@ mod tests {
587586
let inner_done = done.clone();
588587
let rclrs_spin = tokio::task::spawn(async move {
589588
try_until_timeout(move || {
590-
println!(" -- spin");
591589
executor
592590
.spin(SpinOptions::spin_once().timeout(Duration::ZERO))
593591
.timeout_ok()
@@ -646,7 +644,6 @@ mod tests {
646644
)
647645
.unwrap();
648646
try_until_timeout(|| {
649-
println!("checking client");
650647
*client_finished.read().unwrap()
651648
})
652649
.await
@@ -796,7 +793,6 @@ mod tests {
796793
)
797794
.unwrap();
798795
try_until_timeout(|| {
799-
println!("checking client finished");
800796
*client_finished.read().unwrap()
801797
})
802798
.await

0 commit comments

Comments
 (0)