[LON-CAPA-cvs] cvs: loncom / LondConnection.pm
foxr
lon-capa-cvs@mail.lon-capa.org
Mon, 05 Jan 2004 09:30:11 -0000
foxr Mon Jan 5 04:30:11 2004 EDT
Modified files:
/loncom LondConnection.pm
Log:
Redirect Dump -> stderr (was going to stdout) this s just to let those programs
that send stderr to file capture these dumps.
Index: loncom/LondConnection.pm
diff -u loncom/LondConnection.pm:1.21 loncom/LondConnection.pm:1.22
--- loncom/LondConnection.pm:1.21 Mon Dec 22 06:03:17 2003
+++ loncom/LondConnection.pm Mon Jan 5 04:30:10 2004
@@ -1,7 +1,7 @@
# This module defines and implements a class that represents
# a connection to a lond daemon.
#
-# $Id: LondConnection.pm,v 1.21 2003/12/22 11:03:17 foxr Exp $
+# $Id: LondConnection.pm,v 1.22 2004/01/05 09:30:10 foxr Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -127,9 +127,9 @@
my $self = shift;
my $key;
my $value;
- print "Dumping LondConnectionObject:\n";
+ print STDERR "Dumping LondConnectionObject:\n";
while(($key, $value) = each %$self) {
- print "$key -> $value\n";
+ print STDERR "$key -> $value\n";
}
print "-------------------------------\n";
}