importer resolveRecord() not running?

According to the docs , the function
 resolveRecord()
runs for each line in the CSV file. It is not running for me.
public function resolveRecord(): ?AppType
{
    logger('resolveRecord()');
    return new AppType();
}

I am getting a record for each line in the CSV. but itis not logging.
Solution
The import is running on the queue, right? Did you restart the queue worker after making that change?
Was this page helpful?