}
sub get_bib_locations {
- print STDERR "Retrieving Org Units ... ";
+ print STDERR "Retrieving Org Units ... " unless $quiet;
my $r = $ses->request( 'open-ils.cstore.direct.actor.org_unit.search', { id => { '!=' => undef } } );
while (my $o = $r->recv) {
$r->finish;
print STDERR "OK\n";
- print STDERR "Retrieving Copy statuses ... ";
+ print STDERR "Retrieving Copy statuses ... " unless $quiet;
$r = $ses->request( 'open-ils.cstore.direct.config.copy_status.search', { id => { '!=' => undef } } );
while (my $sta = $r->recv) {
$r->finish;
print STDERR "OK\n";
- print STDERR "Retrieving OU types ... ";
+ print STDERR "Retrieving OU types ... " unless $quiet;
$r = $ses->request( 'open-ils.cstore.direct.actor.org_unit_type.search', { id => { '!=' => undef } } );
while (my $outy = $r->recv) {
$r->finish;
print STDERR "OK\n";
- print STDERR "Retrieving Shelving locations ... ";
+ print STDERR "Retrieving Shelving locations ... " unless $quiet;
$r = $ses->request( 'open-ils.cstore.direct.asset.copy_location.search', { id => { '!=' => undef } } );
while (my $s = $r->recv) {