#8224 Fixed print_log
This commit is contained in:
parent
c5588197f2
commit
716e04a6b1
|
@ -343,6 +343,23 @@ sub update_conf_txt ($$$$) {
|
|||
return $result;
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
###############################################################################
|
||||
# PRINT HELP AND CHECK ERRORS FUNCTIONS
|
||||
###############################################################################
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# log wrapper
|
||||
###############################################################################
|
||||
sub print_log ($) {
|
||||
my ($msg) = @_;
|
||||
|
||||
print $msg; # show message
|
||||
|
||||
$msg =~ s/\n+$//;
|
||||
logger( $conf, "($progname) $msg", 10); # save to logging file
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
# Disable a entire group
|
||||
|
@ -986,7 +1003,7 @@ sub pandora_get_calendar_id ($$) {
|
|||
sub pandora_get_same_day_id ($$) {
|
||||
my ($dbh, $same_day) = @_;
|
||||
|
||||
my $weeks = { 'monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6, 'sunday' => 7, 'holiday' => 8};
|
||||
my %weeks = ('monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6, 'sunday' => 7, 'holiday' => 8);
|
||||
|
||||
return defined ($weeks{$same_day}) ? $weeks{$same_day} : -1;
|
||||
}
|
||||
|
@ -1008,25 +1025,6 @@ sub pandora_delete_special_day ($$) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
###############################################################################
|
||||
###############################################################################
|
||||
# PRINT HELP AND CHECK ERRORS FUNCTIONS
|
||||
###############################################################################
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# log wrapper
|
||||
###############################################################################
|
||||
sub print_log ($) {
|
||||
my ($msg) = @_;
|
||||
|
||||
print $msg; # show message
|
||||
|
||||
$msg =~ s/\n+$//;
|
||||
logger( $conf, "($progname) $msg", 10); # save to logging file
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
# Print a parameter error and exit the program.
|
||||
###############################################################################
|
||||
|
|
Loading…
Reference in New Issue