The backend module "Request Log" does not work in TYPO3 12 because of the non-existent method getPackageIcon on the Package class.
I think it would probably be fine to exclude the icon display from v12 since it would otherwise need more changes than simply changing it to:
$package = $this->packageManager->getPackage($key);
$iconPath = method_exists($package, 'getPackageIcon') ? $package->getPackageIcon() : null;
I can provide a PR if wanted 😄
The backend module "Request Log" does not work in TYPO3 12 because of the non-existent method
getPackageIconon thePackageclass.I think it would probably be fine to exclude the icon display from v12 since it would otherwise need more changes than simply changing it to:
I can provide a PR if wanted 😄