protected function processConfiguration($collection,
$op,
$name) { try { $processed = FALSE;
if ($collection == StorageInterface::DEFAULT_COLLECTION
) { $processed =
$this->
importInvokeOwner($collection,
$op,
$name);
} if (!
$processed) { $this->
importConfig($collection,
$op,
$name);
} } catch (\Exception
$e) { $this->
logError($this->
t('Unexpected error during import with operation @op for @name: @message',
['@op' =>
$op, '@name' =>
$name, '@message' =>
$e->
getMessage()]));
// Error for that operation was logged, mark it as processed so that
// the import can continue.
$this->
setProcessedConfiguration($collection,
$op,
$name);
} }