Issue #6268 Log max form size exceeded msg. (#6301) (#6319)

* Issue #6268 Log max form size exceeded msg.

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2021-05-25 15:39:01 +10:00 committed by GitHub
parent cfcb2efa80
commit b0cd198b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -448,6 +448,7 @@ public class Request implements HttpServletRequest
}
catch (IllegalStateException | IllegalArgumentException e)
{
LOG.warn(e.toString());
throw new BadMessageException("Unable to parse form content", e);
}
}