From f7a91cbf6831e6fd1c98a18925556474518b5aa6 Mon Sep 17 00:00:00 2001
From: Aaron Viets <aaron.viets@ligo.org>
Date: Sun, 28 Jul 2024 11:18:45 -0700
Subject: [PATCH] trying to get lal_pacer to print in CI again

---
 gst/lal/gstlal_pacer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gst/lal/gstlal_pacer.c b/gst/lal/gstlal_pacer.c
index 947d8146a..75aa60343 100644
--- a/gst/lal/gstlal_pacer.c
+++ b/gst/lal/gstlal_pacer.c
@@ -167,7 +167,7 @@ static GstFlowReturn transform_ip(GstBaseTransform *trans, GstBuffer *buf) {
 
 	time_to_push_buffer = element->real_t0 + (stream_time - element->t0) / element->speed;
 	wait_time = time_to_push_buffer > current_time ? time_to_push_buffer - current_time : 0;
-	g_print("real_t0=%lu\nt0=%lu\ncurrent_time=%lu\nstream_time=%lu\ntime_to_push_buffer=%lu\nwait_time=%lu", element->real_t0, element->t0, current_time, stream_time, time_to_push_buffer, wait_time);
+	g_printerr("real_t0=%lu\nt0=%lu\ncurrent_time=%lu\nstream_time=%lu\ntime_to_push_buffer=%lu\nwait_time=%lu", element->real_t0, element->t0, current_time, stream_time, time_to_push_buffer, wait_time);
 
 	sleep(wait_time / 1000000000.0);
 
-- 
GitLab