Closed
Description
Right now, when the database is not up to date you just get a message saying "Looks like database is outdated. Please, use setup tool to perform update".
I know that running the setup tool should solve the problem, no matter what the out of sync module is, but as a developer I would like to know what module is not updated yet.
This can simply be solved if the method Magento\Framework\Module\Plugin\DbStatusValidator::isDbUpToDate
returned the name of the outdated module instead of false and in aroundDispatch
instead of checking if (!$this->isDbUpToDate())
just check if ($this->isDbUpToDate() !== true)