update predefined environment and logback

This commit is contained in:
2025-08-06 16:23:52 +02:00
parent 590cb40d3e
commit 146255693c
3 changed files with 7 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ insert_final_newline = true
max_line_length = 120 max_line_length = 120
tab_width = 4 tab_width = 4
[*.{md,json,yml}] [*.{md,json,xml,xsd,yml}]
max_line_length = 1024 max_line_length = 1024
indent_size = 2 indent_size = 2
tab_width = 2 tab_width = 2

View File

@@ -44,9 +44,9 @@ spring:
--- ---
############################## ##############################
### Production environment ### ### Kubernetes environment ###
############################## ##############################
spring: spring:
config: config:
activate: activate:
on-profile: production on-profile: kubernetes

View File

@@ -7,7 +7,10 @@
<root level="INFO"> <root level="INFO">
<appender-ref ref="STDOUT"/> <appender-ref ref="STDOUT"/>
</root> </root>
<springProfile name="develop|docker"> <springProfile name="development">
<logger level="TRACE" name="ltd.hlaeja"/>
</springProfile>
<springProfile name="docker">
<logger level="DEBUG" name="ltd.hlaeja"/> <logger level="DEBUG" name="ltd.hlaeja"/>
</springProfile> </springProfile>
</configuration> </configuration>