X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=blobdiff_plain;f=yarrg%2Fyppedia-chart-parser;h=84386b207e1b394dc5032ea56933b3c9d25d3bab;hp=4ce6bcecd36195da8061b9ff2cf93d0e7f983f3d;hb=93e9c9158b5075a6466c07cc516fe85207e3e069;hpb=697b9c2b3e6472107aa6364cd1d4bed04b5cd633 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]); }