From d2c9c80cc1aeff75c632bcd42d0187b403510b2a Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Wed, 31 Dec 2025 02:37:00 -0500 Subject: [PATCH] fix mysql logline --- irc/mysql/history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/mysql/history.go b/irc/mysql/history.go index d123ff29..2a069d38 100644 --- a/irc/mysql/history.go +++ b/irc/mysql/history.go @@ -417,7 +417,7 @@ func (mysql *MySQL) deleteCorrespondents(ctx context.Context, threshold int64) { } else { count, err := result.RowsAffected() if !mysql.logError("error deleting correspondents", err) { - mysql.logger.Debug(fmt.Sprintf("deleted %d correspondents entries", count)) + mysql.logger.Debug("mysql", fmt.Sprintf("deleted %d correspondents entries", count)) } } }