From 782877c9028f3660a6da185ce42ee159897d7679 Mon Sep 17 00:00:00 2001 From: Daniel Kec Date: Thu, 22 Feb 2024 19:04:04 +0100 Subject: [PATCH] 2.x: 7110 Bad media type log level (#8031) * 7110 Bad media type log level * Update copyright year --------- Co-authored-by: Romain Grecourt --- .../src/main/java/io/helidon/webserver/RequestRouting.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webserver/webserver/src/main/java/io/helidon/webserver/RequestRouting.java b/webserver/webserver/src/main/java/io/helidon/webserver/RequestRouting.java index 14ddefe9f72..997e17360dd 100644 --- a/webserver/webserver/src/main/java/io/helidon/webserver/RequestRouting.java +++ b/webserver/webserver/src/main/java/io/helidon/webserver/RequestRouting.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, 2023 Oracle and/or its affiliates. + * Copyright (c) 2017, 2024 Oracle and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -88,7 +88,7 @@ public void route(BareRequest bareRequest, BareResponse bareResponse) { response.request(nextRequests); nextRequests.next(); } catch (Error | RuntimeException e) { - LOGGER.log(Level.SEVERE, "Unexpected error occurred during routing!", e); + LOGGER.log(Level.FINE, "Unexpected error occurred during routing!", e); throw e; } }