Skip to content

Commit

Permalink
2.x: 7110 Bad media type log level (#8031)
Browse files Browse the repository at this point in the history
* 7110 Bad media type log level

* Update copyright year

---------

Co-authored-by: Romain Grecourt <[email protected]>
  • Loading branch information
danielkec and romain-grecourt authored Feb 22, 2024
1 parent 748a58d commit 782877c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 782877c

Please sign in to comment.