From d278ef0c993aeaa4b60f8f1fa11bc93c2861fd0c Mon Sep 17 00:00:00 2001 From: "adheli.tavares" Date: Tue, 14 Jan 2025 14:16:30 +0000 Subject: Small fixes after dependency uplift for spring and logback Issue-ID: POLICY-5235 Change-Id: I01f85ebc53948ffdd78e26c0c5e1bb6e55157142 Signed-off-by: adheli.tavares --- .../main/java/org/onap/policy/api/main/rest/CommonRestController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/src') diff --git a/main/src/main/java/org/onap/policy/api/main/rest/CommonRestController.java b/main/src/main/java/org/onap/policy/api/main/rest/CommonRestController.java index 97fdb242..ec4dfe2b 100644 --- a/main/src/main/java/org/onap/policy/api/main/rest/CommonRestController.java +++ b/main/src/main/java/org/onap/policy/api/main/rest/CommonRestController.java @@ -4,7 +4,7 @@ * ================================================================================ * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2022 Bell Canada. All rights reserved. - * Modifications Copyright (C) 2022-2024 Nordix Foundation. + * Modifications Copyright (C) 2022-2025 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -132,7 +132,7 @@ public class CommonRestController { @ExceptionHandler(value = {PolicyApiRuntimeException.class}) protected ResponseEntity handleException(PolicyApiRuntimeException ex, WebRequest req) { - LOGGER.warn(ex.getMessage(), ex.getCause()); + LOGGER.warn(ex.getErrorResponse().getErrorMessage(), ex.getCause()); final var requestId = req.getHeader(CommonRestController.REQUEST_ID_NAME); final var status = ex.getErrorResponse().getResponseCode().getStatusCode(); return CommonRestController.addLoggingHeaders( -- cgit