Make the parser failure message a bit more compact

While running fuzzing this was spewing way too many log lines
This commit is contained in:
R Tyler Croy 2020-11-22 10:46:52 -08:00
parent 6ccb9d841d
commit c7d50516ac
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ async fn parse(mut req: Request<()>) -> tide::Result {
match parsed {
Err(e) => {
use pest::error::*;
error!("Failed to parse: {:#?}", e);
error!("Failed to parse: {:?}", e);
let variant = match e.variant {
ErrorVariant::CustomError { message } => message,