Files
cms-core/Documentation/Changelog/9.3/Deprecation-85086-GeneralUtilityArrayToLogString.rst
T

40 lines
1003 B
ReStructuredText

.. include:: /Includes.rst.txt
.. _deprecation-85086:
========================================================
Deprecation: #85086 - GeneralUtility::arrayToLogString()
========================================================
See :issue:`85086`
Description
===========
The method :php:`GeneralUtility::arrayToLogString()`, responsible for formatting an array to a string
ready for logging or output, has been marked as deprecated.
Impact
======
Calling the method directly will trigger a PHP :php:`E_USER_DEPRECATED` error.
Affected Installations
======================
Any TYPO3 installation with third-party extensions using this method.
Migration
=========
For logging purposes, switch to PSR-3 compatible logging where a log-writer is taking care of outputting / storing
this information properly.
For other purposes, like CLI-command output, it is recommended to implement this functionality directly in the
corresponding CLI command.
.. index:: CLI, PHP-API, FullyScanned, ext:core