X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsettings.php;h=6c41856a4f808f9cc58872c41f2a284352127ef7;hb=6001c34525867a0aa614dbc020dcbc485e515345;hp=92a7bb461ff781cb795c4eafb6ee42f3aef5ed51;hpb=a852455d0ed9824fb71c9374c9fffda28f95096f;p=friendica.git diff --git a/mod/settings.php b/mod/settings.php index 92a7bb461f..6c41856a4f 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -225,10 +225,11 @@ function settings_post(App $a) if (isset($_FILES['importcontact-filename'])) { // was there an error if ($_FILES['importcontact-filename']['error'] > 0) { - Logger::notice('Contact CSV file upload error'); + Logger::notice('Contact CSV file upload error', ['error' => $_FILES['importcontact-filename']['error']]); notice(DI::l10n()->t('Contact CSV file upload error')); } else { $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name'])); + Logger::info('Import started', ['lines' => count($csvArray)]); // import contacts foreach ($csvArray as $csvRow) { // The 1st row may, or may not contain the headers of the table @@ -240,11 +241,14 @@ function settings_post(App $a) Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]); } } + Logger::info('Import done'); info(DI::l10n()->t('Importing Contacts done')); // delete temp file unlink($_FILES['importcontact-filename']['tmp_name']); } + } else { + Logger::info('Import triggered, but no import file was found.'); } return;