diff --git a/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php b/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
index 840b89d7e345c432ea54713b008f4f2b0e13c571..ac7f28237892c4604b48409174c8f860b03c224b 100644
--- a/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
+++ b/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
@@ -268,9 +268,8 @@ class ExtensionManagementUtility
             // Candidate for array_merge() if integer-keys will some day make trouble...
             $GLOBALS['TCA'][$table]['columns'] = array_merge($GLOBALS['TCA'][$table]['columns'], $columnArray);
             if ($addTofeInterface) {
-                GeneralUtility::deprecationLog(
-                    'Usage of feInterface is no longer part of the TYPO3 CMS Core. Please check EXT:' . $GLOBALS['_EXTKEY'] . '.'
-                );
+                $message = 'Usage of feInterface is no longer part of the TYPO3 CMS Core. Please check EXT:%s for table "%s".';
+                GeneralUtility::deprecationLog(sprintf($message, $GLOBALS['_EXTKEY'], $table));
             }
         }
     }