Disable compat debug info for app because of import troubles

This commit is contained in:
Daniel 2023-09-06 16:38:47 +02:00
parent b35e4b9b72
commit 3d8e4be498

View file

@ -12,7 +12,6 @@ import (
"github.com/safing/portbase/config" "github.com/safing/portbase/config"
"github.com/safing/portbase/database/query" "github.com/safing/portbase/database/query"
"github.com/safing/portbase/utils/debug" "github.com/safing/portbase/utils/debug"
"github.com/safing/portmaster/compat"
"github.com/safing/portmaster/network/state" "github.com/safing/portmaster/network/state"
"github.com/safing/portmaster/process" "github.com/safing/portmaster/process"
"github.com/safing/portmaster/resolver" "github.com/safing/portmaster/resolver"
@ -99,7 +98,7 @@ func debugInfo(ar *api.Request) (data []byte, err error) {
// Detailed information. // Detailed information.
updates.AddToDebugInfo(di) updates.AddToDebugInfo(di)
compat.AddToDebugInfo(di) // compat.AddToDebugInfo(di) // TODO: Cannot use due to interception import requirement which we don't want for SPN Hubs.
di.AddGoroutineStack() di.AddGoroutineStack()
// Return data. // Return data.