This commit is contained in:
Neil Alexander 2021-07-30 10:54:39 +01:00
parent efe01519a2
commit c997461db1
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -9,6 +9,7 @@ import (
"github.com/matrix-org/dendrite/keyserver/api" "github.com/matrix-org/dendrite/keyserver/api"
"github.com/matrix-org/gomatrixserverlib" "github.com/matrix-org/gomatrixserverlib"
"github.com/matrix-org/util"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )
@ -303,4 +304,6 @@ func (a *KeyInternalAPI) crossSigningKeys(
} }
} }
} }
util.GetLogger(ctx).Infof("Found cross-signing keys: master %+v, self-signing %+v, user-signing %+v", res.MasterKeys, res.SelfSigningKeys, res.UserSigningKeys)
} }