chiark / gitweb /
Show messages immediately in debug mode
[ypp-sc-tools.db-test.git] / yarrg / yppedia-chart-parser
index 4ce6bcecd36195da8061b9ff2cf93d0e7f983f3d..84386b207e1b394dc5032ea56933b3c9d25d3bab 100755 (executable)
@@ -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]); }