3
0
mirror of https://github.com/ergochat/ergo.git synced 2026-01-02 08:17:57 +01:00

fix mysql logline

This commit is contained in:
Shivaram Lingamneni 2025-12-31 02:37:00 -05:00
parent 6386b9ef70
commit d2c9c80cc1

View File

@ -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))
}
}
}