From 9b058702f28b34d61468d1172d8a931b8479fcbe Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Tue, 25 Jul 2023 08:44:47 +0200 Subject: [PATCH] fix: remove logstore beta warning (#6244) Co-authored-by: Livio Spring (cherry picked from commit 35f4f74b0850fd596a7d60766d538b19ac88afc4) --- cmd/start/start.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cmd/start/start.go b/cmd/start/start.go index 80f9dc5308..49cd981e5f 100644 --- a/cmd/start/start.go +++ b/cmd/start/start.go @@ -218,9 +218,6 @@ func startZitadel(config *Config, masterKey string, server chan<- *Server) error usageReporter := logstore.UsageReporterFunc(commands.ReportQuotaUsage) actionsLogstoreSvc := logstore.New(queries, usageReporter, actionsExecutionDBEmitter, actionsExecutionStdoutEmitter) - if actionsLogstoreSvc.Enabled() { - logging.Warn("execution logs are currently in beta") - } actions.SetLogstoreService(actionsLogstoreSvc) notification.Start(ctx, config.Projections.Customizations["notifications"], config.Projections.Customizations["notificationsquotas"], config.Projections.Customizations["telemetry"], *config.Telemetry, config.ExternalDomain, config.ExternalPort, config.ExternalSecure, commands, queries, eventstoreClient, assets.AssetAPIFromDomain(config.ExternalSecure, config.ExternalPort), config.SystemDefaults.Notifications.FileSystemPath, keys.User, keys.SMTP, keys.SMS) @@ -314,9 +311,6 @@ func startAPIs( } accessSvc := logstore.New(quotaQuerier, usageReporter, accessDBEmitter, accessStdoutEmitter) - if accessSvc.Enabled() { - logging.Warn("access logs are currently in beta") - } exhaustedCookieHandler := http_util.NewCookieHandler( http_util.WithUnsecure(), http_util.WithNonHttpOnly(),