.. _configuration: ============= Configuration ============= Target group: **Administrators** .. _configuration-content-element: Content element =============== It is possible to adjust the CSS classes of the :ref:`content element ` table via TypoScript: .. code-block:: typoscript tt_content.tx_jobrouterdata_table { settings { cssClasses { # The class of the table tag table = ce-table # The class of table cells which should be aligned left left = ce-align-left # The class of table cells which should be aligned centered center = ce-align-center # The class of table cells which should be aligned right right = ce-align-right } } } The alignment is selected when configuring the :ref:`table columns `. .. _configuration-logging: Logging ======= If separate logging is necessary to track synchronisations and possible warnings or errors, you can set up :ref:`log writers ` depending on your needs. **Example:** To log all warnings and higher levels of this extension into a separate file, add this snippet to the :file:`ext_localconf.php` file of your site package extension: .. code-block:: php $GLOBALS['TYPO3_CONF_VARS']['LOG']['JobRouter']['Typo3Data']['writerConfiguration'][\Psr\Log\Level::WARNING] = [ \TYPO3\CMS\Core\Log\Writer\FileWriter::class => [ 'logFileInfix' => 'jobrouter_data' ] ]; The messages are then written to the :file:`var/log/typo3_jobrouter_data_.log` file.