diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-12-16 22:17:40 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-12-16 22:17:40 +0100 |
commit | 9adec3ee8d1badec3dcd3643774b5e5c0e866840 (patch) | |
tree | 6ae6da430d029b589b023365325dfa58511efdf9 /lib/Travelynx.pm | |
parent | bb22915fc3816645e4de83a88b0ac016e51924d9 (diff) |
remove debug output
Diffstat (limited to 'lib/Travelynx.pm')
-rwxr-xr-x | lib/Travelynx.pm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index df02485..81dae20 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -2041,8 +2041,6 @@ sub startup { my $date_yyyy = $train->start->strftime('%d.%m.%Y'); my $train_no = $train->type . ' ' . $train->train_no; - $self->app->log->debug("add_route_timestamps"); - my ( $trainlink, $route_data ); $self->get_hafas_json_p( @@ -2777,9 +2775,7 @@ sub startup { } if ( $station->[0] eq $in_transit->{dep_name} ) { $is_after = 1; - $self->app->log->debug("is_after"); if ( @{$station} > 1 ) { - $self->app->log->debug("set dep_info"); $dep_info = $station->[1]; } } @@ -2832,8 +2828,6 @@ sub startup { $ret->{extra_data}{qos_msg} = [@parsed_messages]; if ( $dep_info and $dep_info->{sched_arr} ) { - $self->app->log->debug( - "dep_info has sched_arr. set countdown."); $dep_info->{sched_arr} = epoch_to_dt( $dep_info->{sched_arr} ); $dep_info->{rt_arr} = $dep_info->{sched_arr}->clone; |