add_route_timestamps: change log severity to debug

we cannot do much about backend errors
This commit is contained in:
Daniel Friesel 2022-12-23 21:22:03 +01:00
parent 2534cae31f
commit 44ced8056c
No known key found for this signature in database
GPG key ID: 100D5BFB5166E005

View file

@ -1128,14 +1128,7 @@ sub startup {
)->catch( )->catch(
sub { sub {
my ($err) = @_; my ($err) = @_;
if ( $err $self->app->log->debug("add_route_timestamps: $err");
=~ m{trainlink not found|extra content at the end}i )
{
$self->app->log->debug("add_route_timestamps: $err");
}
else {
$self->app->log->warn("add_route_timestamps: $err");
}
return; return;
} }
)->wait; )->wait;