fix dependencies, add logging

This commit is contained in:
_Bastler 2023-12-13 11:56:57 +01:00
parent 30c2f4c45d
commit d38478e0a4
2 changed files with 1 additions and 5 deletions

View File

@ -87,11 +87,6 @@
<artifactId>webstly-wireguard</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<!-- Database -->

View File

@ -97,6 +97,7 @@ public class DyndnsController extends BaseController {
res.send(update);
} catch (Exception e) {
e.printStackTrace();
throw new EntityResponseStatusException(HttpStatus.UNPROCESSABLE_ENTITY);
}
}