Hello, I have a question for the logging. My Koog ...
# koog-agentic-framework
c
Hello, I have a question for the logging. My Koog with Logback logs very verbose on the info level - is there any way to configure this? I do want to exclude log entries like these:
Copy code
21:29:13.702 INFO  a.k.a.c.agent.entity.AIAgentSubgraph - Executing subgraph single_run [single_run, single_run, a7f90470-0380-457a-9364-55dfb718f077]
21:29:13.703 INFO  a.k.a.c.agent.entity.AIAgentSubgraph - No enforced execution point, starting from __start__ [single_run, single_run, a7f90470-0380-457a-9364-55dfb718f077]
21:29:13.703 INFO  a.k.a.c.agent.entity.AIAgentSubgraph - Executing node __start__ [single_run, single_run, a7f90470-0380-457a-9364-55dfb718f077]
21:29:13.705 INFO  a.k.a.c.agent.entity.AIAgentSubgraph - Completed node __start__ [single_run, single_run, a7f90470-0380-457a-9364-55dfb718f077]
Thank you very much in advance 🙂 Edit: I just found a way to disable them with the following entry in the logback.xml:
Copy code
<logger name="ai.koog.agents.core.agent.entity.AIAgentSubgraph" level="WARN" additivity="false">
        <appender-ref ref="CONSOLE"/>
    </logger>
k
Hi, Christian. I can only recommend muting some appenders via logback config right now. There is definitely something to improve with the logging