Skip to content

Commit

Permalink
Fix jitsi#1655: SENTRY_DSN cannot be defined
Browse files Browse the repository at this point in the history
  • Loading branch information
krombel committed Dec 1, 2023
1 parent dbffba1 commit 9f1f4ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jicofo/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers= java.util.logging.ConsoleHandler
Expand Down
2 changes: 1 addition & 1 deletion jigasi/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers=java.util.logging.ConsoleHandler
Expand Down
2 changes: 1 addition & 1 deletion jvb/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers= java.util.logging.ConsoleHandler
Expand Down

0 comments on commit 9f1f4ca

Please sign in to comment.