Fixes logging so I can see it

This commit is contained in:
Trenton H
2026-03-06 12:04:54 -08:00
parent f97e8c0452
commit 0c0ba6510d

View File

@@ -6,7 +6,7 @@ from django.conf import settings
from django.db import migrations
from django.db import models
logger = logging.getLogger(__name__)
logger = logging.getLogger("paperless.migrations")
_CHUNK_SIZE = 65536 # 64 KiB — avoids loading entire files into memory
_BATCH_SIZE = 500 # documents per bulk_update call