summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-09-01 11:39:22 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2024-09-01 11:39:22 +0200
commit02555f5c2f4614c554e28d90955fb389170b1ed3 (patch)
tree296cd747d9e0b8ba256d2f13d0ee1c48b7e1de3d
parent0f44f8695d6da9b60bebd98c36284045be571142 (diff)
Work: Include backend in debug and error messagesHEAD2.8.38main
-rw-r--r--lib/Travelynx/Command/work.pm18
1 files changed, 12 insertions, 6 deletions
diff --git a/lib/Travelynx/Command/work.pm b/lib/Travelynx/Command/work.pm
index fcb505c..98f478a 100644
--- a/lib/Travelynx/Command/work.pm
+++ b/lib/Travelynx/Command/work.pm
@@ -136,10 +136,14 @@ sub run {
=~ m{svcResL\[0\][.]err is (?:FAIL|PARAMETER)$} )
{
# HAFAS do be weird. These are not actionable.
- $self->app->log->debug("work($uid)/journey: $err");
+ $self->app->log->debug(
+"work($uid) @ HAFAS $entry->{backend_name}: journey: $err"
+ );
}
else {
- $self->app->log->error("work($uid)/journey: $err");
+ $self->app->log->error(
+"work($uid) @ HAFAS $entry->{backend_name}: journey: $err"
+ );
}
}
)->wait;
@@ -159,7 +163,8 @@ sub run {
};
if ($@) {
$errors += 1;
- $self->app->log->error("work($uid)/hafas: $@");
+ $self->app->log->error(
+ "work($uid) @ HAFAS $entry->{backend_name}: $@");
}
next;
}
@@ -245,7 +250,7 @@ sub run {
};
if ($@) {
$errors += 1;
- $self->app->log->error("work($uid)/departure: $@");
+ $self->app->log->error("work($uid) @ IRIS: departure: $@");
}
eval {
@@ -335,14 +340,15 @@ sub run {
)->catch(
sub {
my ($error) = @_;
- $self->app->log->error("work($uid)/arrival: $error");
+ $self->app->log->error(
+ "work($uid) @ IRIS: arrival: $error");
$errors += 1;
}
)->wait;
}
};
if ($@) {
- $self->app->log->error("work($uid)/arrival: $@");
+ $self->app->log->error("work($uid) @ IRIS: arrival: $@");
$errors += 1;
}