Commit c8832e41 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add_route_timestamps: adjust log severity

we can't do anything about "trainlink not found", so it really shouldn't be
a warning.
parent 5e967451
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1307,7 +1307,12 @@ sub startup {
			)->catch(
				sub {
					my ($err) = @_;
					if ( $err eq 'trainlink not found' ) {
						$self->app->log->debug("add_route_timestamps: $err");
					}
					else {
						$self->app->log->warn("add_route_timestamps: $err");
					}
					return;
				}
			)->wait;