diff options
Diffstat (limited to 'gateway/router.go')
-rw-r--r-- | gateway/router.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gateway/router.go b/gateway/router.go index 468f02c8..a0d5f402 100644 --- a/gateway/router.go +++ b/gateway/router.go @@ -110,7 +110,9 @@ func (r *Router) disableBridge(br *bridge.Bridge, err error) bool { if r.BridgeValues().General.IgnoreFailureOnStart { r.logger.Error(err) // setting this bridge empty - *br = bridge.Bridge{} + *br = bridge.Bridge{ + Log: br.Log, + } return true } return false |