From 03f038f0c1922a9cf2c5b8826d2a2e5b8b3015b8 Mon Sep 17 00:00:00 2001 From: "ian%hixie.ch" Date: Sun, 9 Sep 2001 17:55:21 +0000 Subject: [PATCH] Added the message level number to the debug output to help gauge what level is useful. git-svn-id: svn://10.0.0.236/trunk@102611 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/PLIF/PLIF.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/PLIF/PLIF.pm b/mozilla/webtools/PLIF/PLIF.pm index 25f9638e709..68a15ec478a 100644 --- a/mozilla/webtools/PLIF/PLIF.pm +++ b/mozilla/webtools/PLIF/PLIF.pm @@ -170,7 +170,7 @@ sub dump { my($level, @data) = @_; if ($self->isAtDebugLevel($level)) { foreach (@data) { - print STDERR "$0: $_\n"; + print STDERR "$0: ($level) $_\n"; } } }