This commit is contained in:
Massimiliano Assante 2022-07-20 11:13:27 +02:00
parent ac9a5f39ee
commit bc028ae8fd
4 changed files with 6 additions and 2 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -1,5 +1,9 @@
# Changelog
## [v2.6.1-SNAPSHOT] - 2022-07-20
- Incident
## [v2.6.0] - 2022-05-16
- Feature #23186, Full notifications support for social service

View File

@ -12,7 +12,7 @@
<groupId>org.gcube.portal</groupId>
<artifactId>social-networking-library-ws</artifactId>
<packaging>war</packaging>
<version>2.6.0</version>
<version>2.6.1-SNAPSHOT</version>
<name>social-networking-library-ws</name>
<description>Rest interface for the social networking library.</description>
<properties>

View File

@ -19,7 +19,7 @@ public class ApplicationException implements ExceptionMapper<Exception> {
private static final org.slf4j.Logger logger = LoggerFactory.getLogger(ApplicationException.class);
public Response toResponse(Exception e) {
logger.warn("ApplicationException invoked for exception " + e);
logger.warn("ApplicationException invoked for exception", e);
return Response
.status(Response.Status.INTERNAL_SERVER_ERROR.getStatusCode())
.type(MediaType.APPLICATION_JSON)