diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-07-25 20:01:47 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-07-25 20:01:47 +0200 |
commit | 7455653f541198e0e0a6d11aed421487ffdb6285 (patch) | |
tree | c398832fd9037bb017eacdb28d6b570e9400d4c7 | |
parent | b9cda07f85601a58ea32dbdacdd5399f302db52b (diff) |
debug output
-rwxr-xr-x | lib/Travelynx/Controller/Traveling.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index 3fc3d75..6b421d1 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -95,7 +95,8 @@ sub get_connecting_trains_p { return $promise->reject; } - $self->log->debug( join( q{, }, map { $_->{name} } @destinations ) ); + $self->log->debug( 'get_connection_targets returned ' + . join( q{, }, map { $_->{name} } @destinations ) ); my $can_check_in = not $arr_epoch || ( $arr_countdown // 1 ) < 0; my $lookahead |