diff --git a/app/jobs/regular/sync_acls_for_uploads.rb b/app/jobs/regular/sync_acls_for_uploads.rb index 68b5123b1ac..1c9c3f2c48d 100644 --- a/app/jobs/regular/sync_acls_for_uploads.rb +++ b/app/jobs/regular/sync_acls_for_uploads.rb @@ -11,12 +11,8 @@ module Jobs return if !Discourse.store.external? return if !args.key?(:upload_ids) - # NOTE: These log messages are set to warn to ensure this is working - # as intended in initial production trials, this will need to be set to debug - # after an acl_stale column is added to uploads. time = Benchmark.measure do - Rails.logger.warn("Syncing ACL for upload ids: #{args[:upload_ids].join(", ")}") Upload .includes(:optimized_images) .where(id: args[:upload_ids]) @@ -36,9 +32,6 @@ module Jobs end end end - Rails.logger.warn( - "Completed syncing ACL for upload ids in #{time}. IDs: #{args[:upload_ids].join(", ")}", - ) end end end