another log level adjustment
This commit is contained in:
parent
c8832e410e
commit
bed4ebe4cc
1 changed files with 7 additions and 1 deletions
|
@ -1153,7 +1153,13 @@ sub startup {
|
|||
)->catch(
|
||||
sub {
|
||||
my ($err) = @_;
|
||||
$self->app->log->warn("add_route_timestamps: $err");
|
||||
if ( $err =~ m{extra content at the end}i ) {
|
||||
$self->app->log->debug(
|
||||
"add_route_timestamps: $err");
|
||||
}
|
||||
else {
|
||||
$self->app->log->warn("add_route_timestamps: $err");
|
||||
}
|
||||
return;
|
||||
}
|
||||
)->wait;
|
||||
|
|
Loading…
Reference in a new issue