fix: remove debbuging messages

This commit is contained in:
GED 2024-12-25 05:06:56 +01:00
parent 242d3c23dc
commit af8b3b4f5d
4 changed files with 1 additions and 12 deletions

View file

@ -1,7 +0,0 @@
continue
continue
continie
continue
Point.count
Point

View file

@ -4,13 +4,11 @@ class ImportJob < ApplicationJob
queue_as :imports
def perform(user_id, import_id)
puts "ImportJob started for user_id: #{user_id}, import_id: #{import_id}"
user = User.find(user_id)
import = user.imports.find(import_id)
import.process!
puts "ImportJob finished for user_id: #{user_id}, import_id: #{import_id}"
end
end

View file

@ -33,8 +33,6 @@ class GoogleMaps::SemanticHistoryParser
)
broadcast_import_progress(import, index)
puts "Created point: #{location['latitudeE7'] / 1e7}, #{location['longitudeE7'] / 1e7} at #{location['timestamp']}"
end
end