Skip to content

Commit 386de0a

Browse files
committed
Update logback.xml
1 parent 4328246 commit 386de0a

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/main/kotlin/eu/openanalytics/shinyproxyoperator/Operator.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,10 @@ class Operator(client: NamespacedKubernetesClient? = null,
208208
} catch (e: KubernetesClientException) {
209209
println()
210210
println()
211-
println("Warning: could not check whether ShinyProxy CRD does not exits.")
211+
println("Warning: could not check whether ShinyProxy CRD exits.")
212212
println("This is normal when the ServiceAccount of the operator does not have permission to access CRDs (at cluster scope).")
213-
println("If you get an unexpected erorr after this message, make sure that the CRD exists.")
213+
println("If you get an unexpected error after this message, make sure that the CRD exists.")
214+
println()
214215
println()
215216
}
216217

src/main/resources/logback.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
44
<encoder>
5-
<pattern>(%d{HH:mm:ss.SSS} [%-15.15thread] %-5level %-36logger{36} - %msg%n</pattern>
5+
<pattern>%d{HH:mm:ss.SSS} [%-15.15thread] %-5level %-36logger{36} - %msg%n</pattern>
66
<!--<pattern>%highlight(%d{HH:mm:ss.SSS} [%-15.15thread] %-5level %-36logger{36} - %msg%n)</pattern>-->
77
</encoder>
88
</appender>
@@ -11,7 +11,7 @@
1111
<appender-ref ref="STDOUT" />
1212
</root>
1313

14-
<logger name="io.fabric8.kubernetes.client.informers.cache" level="WARN" additivity="false">
14+
<logger name="io.fabric8.kubernetes.client.informers" level="WARN" additivity="false">
1515
<appender-ref ref="STDOUT"/>
1616
</logger>
1717

0 commit comments

Comments
 (0)