[LON-CAPA-cvs] cvs: loncom /publisher lonpublisher.pm
albertel
lon-capa-cvs@mail.lon-capa.org
Fri, 19 Jan 2007 06:10:10 -0000
albertel Fri Jan 19 01:10:10 2007 EDT
Modified files:
/loncom/publisher lonpublisher.pm
Log:
- removing log spew
Index: loncom/publisher/lonpublisher.pm
diff -u loncom/publisher/lonpublisher.pm:1.216 loncom/publisher/lonpublisher.pm:1.217
--- loncom/publisher/lonpublisher.pm:1.216 Wed Jan 10 15:23:21 2007
+++ loncom/publisher/lonpublisher.pm Fri Jan 19 01:10:09 2007
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Publication Handler
#
-# $Id: lonpublisher.pm,v 1.216 2007/01/10 20:23:21 albertel Exp $
+# $Id: lonpublisher.pm,v 1.217 2007/01/19 06:10:09 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -507,18 +507,13 @@
closedir(DIR);
my $sh;
if ( $sh=Apache::File->new("$target.subscription") ) {
- &Apache::lonnet::logthis("opened $target.subscription");
while (my $subline=<$sh>) {
if ($subline =~ /^($match_lonid):/) {
if ($1 ne $Apache::lonnet::perlvar{'lonHostID'}) {
push(@subscribed,$1);
}
- } else {
- &Apache::lonnet::logthis("No Match for $subline");
}
}
- } else {
- &Apache::lonnet::logthis("Unable to open $target.subscription");
}
return @subscribed;
}