--- trunk/lib/WebPAC/Output/Estraier.pm 2005/12/18 23:34:24 291 +++ trunk/lib/WebPAC/Output/Estraier.pm 2005/12/19 21:26:04 301 @@ -90,14 +90,14 @@ my $url = $self->{masterurl} . '/node/' . $self->{database}; $self->{url} = $url; - $log->info("opening Hyper Estraier index $self->{url}"); + $log->debug("opening index $self->{url}"); my $nodes = $self->master( action => 'nodelist' ); $log->debug("nodes found: $nodes"); if ($nodes !~ m/^$self->{database}\t/sm) { - $log->info("creating index $url"); + $log->warn("creating index $url"); $self->master( action => 'nodeadd', name => $self->{database}, @@ -109,7 +109,7 @@ $self->{'db'}->set_auth($self->{'user'}, $self->{passwd}); my $encoding = $self->{'encoding'} || 'ISO-8859-2'; - $log->info("using encoding $encoding"); + $log->info("using index $self->{url} with encoding $encoding"); $self->{'iconv'} = new Text::Iconv($encoding, 'UTF-8') or $log->logdie("can't create conversion from $encoding to UTF-8");