From e05660c46bac1880ea93769314c34306e62ef7f2 Mon Sep 17 00:00:00 2001 From: tobi Date: Mon, 9 Dec 2024 15:14:09 +0100 Subject: [PATCH] remove unneeded log lines --- .../db/bundb/migrations/20241121121623_enum_strings_to_ints.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/db/bundb/migrations/20241121121623_enum_strings_to_ints.go b/internal/db/bundb/migrations/20241121121623_enum_strings_to_ints.go index 9ddbd77cd..6767c6809 100644 --- a/internal/db/bundb/migrations/20241121121623_enum_strings_to_ints.go +++ b/internal/db/bundb/migrations/20241121121623_enum_strings_to_ints.go @@ -84,7 +84,6 @@ func init() { // Convert all visibility tables. for _, table := range visTables { - log.Info(ctx, "remapping %s.%s to save space, please wait...", table.Table, table.Column) if err := convertEnums(ctx, tx, table.Table, table.Column, visibilityMapping, table.Default); err != nil { return err @@ -111,7 +110,6 @@ func init() { notificationMapping := notificationEnumMapping[old_gtsmodel.NotificationType]() // Migrate over old notifications table column over to new column type. - log.Info(ctx, "remapping notifications.notification_type to save space, please wait...") if err := convertEnums(ctx, tx, "notifications", "notification_type", //nolint:revive notificationMapping, nil); err != nil { return err