Skip to content

Commit 71b3892

Browse files
authored
jicofo,jvb,jigasi: fix SENTRY_DSN cannot be defined
1 parent e6a0c04 commit 71b3892

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jicofo/rootfs/defaults/logging.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
1+
{{ if .Env.SENTRY_DSN }}
22
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
33
{{ else }}
44
handlers= java.util.logging.ConsoleHandler

jigasi/rootfs/defaults/logging.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
1+
{{ if .Env.SENTRY_DSN }}
22
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
33
{{ else }}
44
handlers=java.util.logging.ConsoleHandler

jvb/rootfs/defaults/logging.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
1+
{{ if .Env.SENTRY_DSN }}
22
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
33
{{ else }}
44
handlers= java.util.logging.ConsoleHandler

0 commit comments

Comments
 (0)