Import/Core_geoip.php
[Pman.Core] / Import / Core_geoip.php
index 7ce9cf0..068c13e 100644 (file)
@@ -156,6 +156,8 @@ class Pman_Core_Import_Core_geoip extends Pman_Roo
     
     function processLocation($row)
     {
+        $this->log("Processing : Continent - {$row['CONTINENT_NAME']}({$row['CONTINENT_CODE']}) | Country - {$row['COUNTRY_NAME']}({$row['COUNTRY_ISO_CODE']}) | Division - {$row['SUBDIVISION_ISO_CODE']}({$row['SUBDIVISION_NAME']}) | City - {$row['CITY_NAME']}");
+        
         $continent = $this->processContinent($row['CONTINENT_CODE'], $row['CONTINENT_NAME']);
         
         $country = $this->processCountry($row['COUNTRY_ISO_CODE'], $row['COUNTRY_NAME'], $continent);