The Log table is used by the component itself to record informational messages as various tasks are performed.
This is the same format as the Joomla JLog table which is not surprising since it is populated by the JLog method.
Table 8.5. Log table description
Column Name |
Type |
Size |
Not Null? |
Constraints |
Description |
---|---|---|---|---|---|
id |
Int |
11 |
Yes |
Primary key |
The system generated unique identifier for the record. Populated by an auto-sequence. |
priority |
Int |
11 |
Yes |
None |
An integer indicating the priority of the message. i.e. Info, Debug etc. |
message |
Varchar |
512 |
Yes |
None |
The message containing the details of the specific task stage, count etc. |
date |
Datetime |
N/A |
Yes |
None |
The date and time when the message was recorded. |
category |
Varchar |
255 |
Yes |
None |
The category of the message. |