Improve logging and update dependencies

Enabled detailed logging for DNS record operations and adjusted log levels. Updated Maven dependencies, including httpclient5, logback, and added explicit SLF4J configurations. Minor changes to the logging configuration file and project structure for better test isolation.
This commit is contained in:
2025-04-18 13:19:40 +02:00
parent 0e5b878e9f
commit 4902d0062a
3 changed files with 34 additions and 14 deletions
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="false">
<configuration debug="true">
<appender name="current"
class="ch.qos.logback.core.ConsoleAppender">
@@ -8,6 +8,8 @@
</encoder>
</appender>
<logger name="org.apache.hc.client5.http" level="info" />
<root level="debug">
<appender-ref ref="current"/>
</root>