DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

~.logging

This extension makes use of the logging framework which was newly introduced in TYPO3 6.1. For more information on this look at Logging with TYPO3 in the TYPO3 Core API. For each log level as there are

  • emergency
  • alert
  • critical
  • error
  • warning
  • notice
  • info
  • debug

different logwriters of types file and/or table could be configured:

Reference

Property Title Type
file Filename to store log messages resource
table Tablename to store log messages string

[tsref:plugin.tx_thrating.settings.logging.<level>]

file

Property

file

Data type

resource

Description

Filename to store log messages.

Default

table

Property

table

Data type

string

Description

Tablename to store log messages

Default

Example

1
2
3
4
5
6
plugin.tx_thrating.settings.logging {
   debug {
      file = typo3temp/logs/ThRating.log
      table = sys_log
   }
}