Update rabbit-sink logging

This commit is contained in:
Corneil du Plessis
2023-02-03 16:20:09 +02:00
parent 4acb750c96
commit 072ecb6be1
2 changed files with 5 additions and 4 deletions

View File

@@ -9,5 +9,6 @@
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
<logger name="org.testcontainers" level="INFO" />
<logger name="org.testcontainers" level="DEBUG" />
<logger name="org.springframework.cloud.stream" level="DEBUG" />
</configuration>

View File

@@ -20,9 +20,9 @@ function check_env() {
fi
}
if [ "$VERBOSE" == "true" ]; then
MAVEN_OPTS="--debug"
elif [ "$VERBOSE" == "false" ]; then
if [ "$VERBOSE" = "true" ]; then
MAVEN_OPTS="-D"
elif [ "$VERBOSE" = "false" ]; then
MAVEN_OPTS="-q"
fi
if [ "$MAVEN_OPTS" == "" ]; then