public function getLogTrace()
 {
     return $this->importModel->getFormatedLogTrace();
 }
 /**
  * {@inheritdoc}
  */
 public function getFormatedLogTrace()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFormatedLogTrace');
     if (!$pluginInfo) {
         return parent::getFormatedLogTrace();
     } else {
         return $this->___callPlugins('getFormatedLogTrace', func_get_args(), $pluginInfo);
     }
 }
 /**
  * @return string
  */
 public function getFormattedLogTrace()
 {
     // Yep, there is a typo here, see https://github.com/magento/magento2/pull/2771
     return $this->importModel->getFormatedLogTrace();
 }