Skip to content

Commit

Permalink
chore: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfromyeg committed Jan 6, 2024
1 parent 60c16f5 commit a4922a7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions bereal/celery.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
"""
Celery stuff.
"""
import os
import gc
from celery import Celery

from .bereal import memories
from .images import create_images, cleanup_images
from .videos import build_slideshow
from .utils import Mode, REDIS_HOST, REDIS_PORT, year2dates, CONTENT_PATH, EXPORTS_PATH
from .utils import Mode, REDIS_HOST, REDIS_PORT, year2dates
from .logger import logger


Expand All @@ -28,11 +27,6 @@ def make_video(token: str, phone: str, year: str, song_path: str, mode: Mode) ->
"""
Creating a video takes about ~15 min. This is a work-in-progress!
"""
logger.info("%s", CONTENT_PATH)
logger.info("%s", EXPORTS_PATH)

logger.info("%s", os.getcwd())

logger.info("Starting make_video task; first, downloading images...")

sdate, edate = year2dates(year)
Expand Down

0 comments on commit a4922a7

Please sign in to comment.