From 93e9c9158b5075a6466c07cc516fe85207e3e069 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 1 Sep 2009 16:05:33 +0100 Subject: [PATCH] Show messages immediately in debug mode --- yarrg/yppedia-chart-parser | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/yarrg/yppedia-chart-parser b/yarrg/yppedia-chart-parser index 4ce6bce..84386b2 100755 --- a/yarrg/yppedia-chart-parser +++ b/yarrg/yppedia-chart-parser @@ -55,7 +55,11 @@ my @msgkinds= qw(change warning error); my %msgs; my %msgprinted; my %msgkindprinted; -sub pmsg ($$) { push @{ $msgs{$_[0]} }, "$_[0]: $_[1]\n"; } +sub pmsg ($$) { + my $m= "$_[0]: $_[1]\n"; + print DEBUG "D $m"; + push @{ $msgs{$_[0]} }, $m; +} sub warning ($) { pmsg("warning",$_[0]); } sub error ($) { pmsg("error", $_[0]); } sub change ($) { pmsg("change", $_[0]); } -- 2.30.2