Skip to content

Commit 39153fc

Browse files
kabirclaude
andcommitted
refactor: Set logging to INFO level for production-like behavior
Changed default logging levels to INFO for production-oriented example: - Removed DEBUG level for io.a2a.examples.cloud - Removed DEBUG level for io.a2a.server.events - Removed DEBUG level for io.a2a.extras.queuemanager.replicated - Removed DEBUG level for io.a2a.server.requesthandlers Added documentation comments showing how to enable DEBUG logging for troubleshooting specific components. This follows best practices for production examples while maintaining clear guidance for developers who need detailed logs during development. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ace5950 commit 39153fc

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

examples/cloud-deployment/server/src/main/resources/application.properties

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ mp.messaging.incoming.replicated-events-in.value.deserializer=org.apache.kafka.c
3636
mp.messaging.incoming.replicated-events-in.auto.offset.reset=earliest
3737

3838
# Logging
39+
# Default to INFO level for production-like behavior
40+
# To enable DEBUG logging for troubleshooting, set these to DEBUG:
41+
# quarkus.log.category."io.a2a.examples.cloud".level=DEBUG
42+
# quarkus.log.category."io.a2a.server.events".level=DEBUG
43+
# quarkus.log.category."io.a2a.extras.queuemanager.replicated".level=DEBUG
44+
# quarkus.log.category."io.a2a.server.requesthandlers".level=DEBUG
3945
quarkus.log.level=INFO
4046
quarkus.log.category."io.a2a".level=INFO
41-
quarkus.log.category."io.a2a.examples.cloud".level=DEBUG
42-
quarkus.log.category."io.a2a.server.events".level=DEBUG
43-
quarkus.log.category."io.a2a.extras.queuemanager.replicated".level=DEBUG
44-
quarkus.log.category."io.a2a.server.requesthandlers".level=DEBUG
4547
quarkus.log.console.format=%d{HH:mm:ss} %-5p [%c{2.}] (%t) %s%e%n
4648

4749
# Health checks

0 commit comments

Comments
 (0)