From 0560c5e3b73599bcd5c2e586f187a55469912351 Mon Sep 17 00:00:00 2001 From: fosterfarrell9 <28628554+fosterfarrell9@users.noreply.github.com> Date: Sat, 9 Dec 2023 14:15:47 +0100 Subject: [PATCH] remove unnecessary logging --- app/uploaders/video_uploader.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/uploaders/video_uploader.rb b/app/uploaders/video_uploader.rb index 6b13695b9..bcfe7aff2 100644 --- a/app/uploaders/video_uploader.rb +++ b/app/uploaders/video_uploader.rb @@ -12,7 +12,6 @@ class VideoUploader < Shrine # add metadata to uploaded video: duration, bitrate, resolution, framerate add_metadata do |io, **options| - Rails.logger.debug(options[:action]) if options[:action] != :upload movie = Shrine.with_file(io) { |file| FFMPEG::Movie.new(file.path) }