update GlobalExceptionHandler

This commit is contained in:
Efstratios Giannopoulos 2024-04-12 14:06:57 +03:00
parent d5e43e12bf
commit 5257e41109
1 changed files with 4 additions and 0 deletions

View File

@ -50,7 +50,11 @@ public class GlobalExceptionHandler {
case ERROR:
logger.error(message, e);
break;
default:
logger.error(e);
}
} else {
logger.error(e);
}
}