From eb70eaaafd6a488fb7fb45adc8993eeffccf3681 Mon Sep 17 00:00:00 2001 From: Jean Connelly Date: Thu, 27 Jun 2019 08:52:03 -0400 Subject: [PATCH] Remove double-printed labels on a couple of obsid warnings --- starcheck/src/starcheck.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/starcheck/src/starcheck.pl b/starcheck/src/starcheck.pl index b5bd9ce6..7e9a2bdb 100755 --- a/starcheck/src/starcheck.pl +++ b/starcheck/src/starcheck.pl @@ -503,10 +503,10 @@ if (defined $obs{$oflsid}->{ok_no_starcat}){ my $ofls_string = $obs{$oflsid}->{ok_no_starcat}; push @{$obs{$oflsid}->{fyi}}, - sprintf(">> INFO : No Guide Star Summary for obsid $obsid ($oflsid). OK for '$ofls_string' ER. \n"); + sprintf("No Guide Star Summary for obsid $obsid ($oflsid). OK for '$ofls_string' ER. \n"); next HAS_GUIDE; } - push @{$obs{$oflsid}->{warn}}, sprintf(">> WARNING: No Guide Star Summary for obsid $obsid ($oflsid). \n"); + push @{$obs{$oflsid}->{warn}}, sprintf("No Guide Star Summary for obsid $obsid ($oflsid). \n"); } }