Skip to content

Commit

Permalink
Use warn instead of print for before_send_messages so it can be compa…
Browse files Browse the repository at this point in the history
…tible with WELCOME notices
  • Loading branch information
kylemhall committed Sep 9, 2024
1 parent 19cb2c6 commit 752a84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Koha/Plugin/Com/ByWaterSolutions/KitchenSink.pm
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ in process_message_queue.pl
sub before_send_messages {
my ( $self, $params ) = @_;

print "Plugin hook before_send_message called with the params: " . Data::Dumper::Dumper( $params );
warn "Plugin hook before_send_message called with the params: " . Data::Dumper::Dumper( $params );
}

=head3 item_barcode_transform
Expand Down

0 comments on commit 752a84e

Please sign in to comment.