- Added verbose param to OllamaAPI

- Setup logback logging
- Updated readme
This commit is contained in:
Amith Koujalgi
2023-11-09 00:26:03 +05:30
parent 98a98d3276
commit d50e30f147
6 changed files with 149 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT"/>
</root>
<logger name="org.apache" level="WARN"/>
<logger name="httpclient" level="WARN"/>
</configuration>