, (*1)
Contao Extension: BackendLogs
Provides a special functionality to display error.log, email.log and other configured logfiles in Contao backend., (*2)
Installation
Install the extension via composer: cliffparnitzky/backend-logs., (*3)
If you prefer to install it manually, download the latest release here: https://github.com/cliffparnitzky/BackendLogs/releases, (*4)
Tracker
https://github.com/cliffparnitzky/BackendLogs/issues, (*5)
Compatibility
- min. Contao version: >= 3.2.0
- max. Contao version: < 3.6.0
Dependency
There are no dependencies to other extensions, that have to be installed., (*6)
Additional configuration
Add an additional logfile configuration to system/config/localconfig.php
:, (*7)
$GLOBALS['TL_LOGFILES']['logfileMylog'] = array ('logfile' => '/system/logs/mylog.log', 'rows' => 30);
Add additional logfile config translations to system/config/langconfig.php
:, (*8)
if ($GLOBALS['TL_LANGUAGE'] == 'de')
{
$GLOBALS['TL_LANG']['MOD']['logfileMylog'] = "Mein Logfile";
}
elseif ($GLOBALS['TL_LANGUAGE'] == 'en')
{
$GLOBALS['TL_LANG']['MOD']['logfileMylog'] = "My logfile";
}