The joomla/log
package has been deprecated. No further updates are planned.
The Joomla Framework includes a Log package that allows for configurable, hook-driven logging to a variety of formats.
The classes included in the Log package are Joomla\Log\Log
, Joomla\Log\LogEntry
, Joomla\Log\AbstractLogger
as well as the classes Joomla\Log\Logger\Callback
, Joomla\Log\Logger\Database
, Joomla\Log\Logger\Echoo
, Joomla\Log\Logger\FormattedText
, Joomla\Log\Logger\Syslog
and Joomla\Log\Logger\W3c
which support formatting and storage. Of all these classes, you will generally only use Joomla\Log\Log
in your projects.
Logging is a two-step process.
First you must add the add loggers to listen for log messages. Any number of loggers can be configured to listen for log messages based on a priority and a category. For example, you can configure all log messages to be logged to the database, but also set just errors to be logged to a file. To do this, you use the Joomla\Log\Log::addLogger
method.
After at least one logger is configured, you can then add messages using the Joomla\Log\Log::addLogEntry
method where you can specify a message, and optionally a priority (integer), category (string) and date.
Before we look at any logging examples, we need to understand what the priority is. The priority is an integer mask and is set using one or more predefined constants in the Joomla\Log\Log
class. These are:
- Joomla\Log\Log::EMERGENCY
- Joomla\Log\Log::ALERT
- Joomla\Log\Log::CRITICAL
- Joomla\Log\Log::ERROR
- Joomla\Log\Log::WARNING
- Joomla\Log\Log::NOTICE
- Joomla\Log\Log::INFO
- Joomla\Log\Log::DEBUG
For information on what situation to use each constant in see the PSR-3 (Section 3) details here - https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#3-psrlogloggerinterface where a detailed explanation can be found.
A final constant, Joomla\Log\Log::ALL
is also available which corresponds to hex FFFF (16 bits). The other constants reserve the first eight bits for system use. This allows the developer the last eight bits, hex 100 to 8000, for custom use if desired. As the values are for masking, they can be mixed using any of the bitwise operators for and, or, not and xor.
By default, loggers are added to listen for Joomla\Log\Log::ALL
priorities and log entries are added using the Joomla\Log\Log::INFO
mask.
A very typical example of logging is the ability to log to a file, and this is the default handler for logging. To do this add the logger and then you can add log messages.
// Initialise a basic logger with no options (once only).
Joomla\Log\Log::addLogger(array());
// Add a message.
Joomla\Log\Log::add('Logged');
As no logger has been specified in the Joomla\Log\Log::addLogger
call, the "formattedtext" logger will be used. This will log the message to a file called "error.php" in the log folder specified by the "log_path" configuration variable (in the Joomla CMS, the default is /logs/
). It will look something like this:
#<?php die('Forbidden.'); ?>
#Date: 2011-06-17 02:56:21 UTC
#Software: Joomla Framework 01-Jun-2011 06:00 GMT
#Fields: datetime priority category message
2011-06-17T03:06:44+00:00 INFO - Logged
The file is tab-delimited and the default columns are the timestamp, the text representation of the priority, the category and finally the message. The category is empty (a dash) because we didn't supply it.
To log a different priority, you can use code like:
Joomla\Log\Log::add('Logged 3', Joomla\Log\Log::WARNING, 'Test');
The log file will now look similar to the following:
2011-06-17T03:06:44+00:00 INFO - Logged
2011-06-17T03:52:08+00:00 WARNING - Logged 2
2011-06-17T03:57:03+00:00 WARNING test Logged 3
When adding the "formattedtext" logger, the following options are available to supply in the array you pass to Joomla\Log\Log::addLogger
.
Option | Description |
---|---|
text_file | Allows you to specify the name of the file to which messages are logged. |
text_file_path | Allows you to specify the folder path to the file to which messages are logged. |
text_file_no_php | If set, the PHP die statement will not be added to the file line of the file. |
text_entry_format | Allows you to change the format of the entire line of the log message in the file. |
Given the options outlined in the previous section, you can change the name of the file to which you are logging when you add the logger, like this:
// Log to a specific text file.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'mylogs.php'
)
);
You can log different types of messages to different files by adding multiple loggers that bind different log priorities to different files. For example, the following code will log all messages except errors to one file, and error messages to a separate file.
// Log all message except errors to mylogs.php.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'mylogs.php'
),
Joomla\Log\Log::ALL ^ Joomla\Log\Log::ERROR
);
// Log errors to myerrors.php.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'myerrors.php'
),
Joomla\Log\Log::ERROR
);
If you are wanting to collect errors for your specific project, class or extension, you can also bind logging to different categories. For example, the following code could be used in a Joomla extension to just collect errors relating to it.
// Log my extension errors only.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'com_hello.errors.php'
),
Joomla\Log\Log::ERROR,
'com_hello'
);
To log messages to that logger, you would use something similar to the following code:
Joomla\Log\Log::add('Forgot to say goodbye', Joomla\Log\Log::ERROR, 'com_hello');
It is important to note that other loggers, added beyond your control, may also pick up this message.
Log files can, potentially, get very long over time. A convenient solution to this is to roll logs into different files based on a period of time - an hour, a day, a month or even a year. To do this, you just need to add the date to the file name of the log file. The following example shows you how to do this on a daily basis.
// Get the date.
$date = date('Y-m-d');
// Add the logger.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'com_hello.'.$date.'.php'
)
);
When you adding a log message, it is written to the file in a default format in the form:
{DATETIME} {PRIORITY} {CATEGORY} {MESSAGE}
Each field is written in upper case, wrapped in curly braces and separated by tabs. There are a number of other fields that are automatically defined in the "formattedtext" logger that you can take advantage of automatically. These are:
Field | Description |
---|---|
{CLIENTIP} | The IP address of the user. |
{DATE} | The "Y-m-d" date component of the message datestamp. |
{TIME} | The "H:i:s" time component of the message datestamp. |
To modify for the log format to add any or all of these fields, you can add the logger as shown in the following code.
// Add the logger.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'com_hello.php',
'text_entry_format' => '{DATE} {TIME} {CLIENTIP} {CATEGORY} {MESSAGE}'
)
);
As you can see, you can include or leave out any fields as you require to suit the needs of your project.
You can also add more fields but to do this you need to create and add a Joomla\Log\LogEntry
object directly. The following example shows you how to do this.
// Add the logger.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'com_shop.sales.php',
'text_entry_format' => '{DATETIME} {PRICE} {QUANTITY} {MESSAGE}'
),
Joomla\Log\Log::INFO,
'Shop'
);
$logEntry = new Joomla\Log\LogEntry('T- Shirt', Joomla\Log\Log::INFO, 'Shop');
$logEntry->price = '7.99';
$logEntry->quantity = 10;
Joomla\Log\Log::add($logEntry);
It is strongly recommended that, when using a custom format, you bind the log entries to a specific and unique category, otherwise log files with different format (fields) could become mixed.
The "database" logger allows you to log message to a database table. The create syntax for the default table is as follows:
CREATE TABLE `jos_log_entries` (
`priority` int(11) DEFAULT NULL,
`message` varchar(512) DEFAULT NULL,
`date` datetime DEFAULT NULL,
`category` varchar(255) DEFAULT NULL,
KEY `idx_category_date_priority` (`category`,`date`,`priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
To log messages using the "database" logger, you the following code as a guide.
// Add the logger.
Joomla\Log\Log::addLogger(
array(
'logger' => 'database'
),
Joomla\Log\Log::ALL,
'dblog'
);
// Add the message.
Joomla\Log\Log::add('Database log', Joomla\Log\Log::INFO, 'dblog');
Notice that the example binds the logger to all message priorities, but only those with a category of "dblog".
If you are wanting to store additional information in the message, you can do so using a JSON encoded string. For example:
// Assemble the log message. Assume a $user object.
$log = array(
'userId' => $user->get('id'),
'userName' => $user->get('name'),
'stockId' => 'SKU123',
'price' => '7.49',
'quantity' => 10
);
// Add the message.
Joomla\Log\Log::add(json_encode($log), Joomla\Log\Log::INFO, 'dblog');
This makes it possible to retrieve detailed information for display.
Add "joomla/log": "~1.0"
to the require block in your composer.json and then run composer install
.
{
"require": {
"joomla/log": "~1.0"
}
}
Alternatively, you can simply run the following from the command line:
composer require joomla/log "~1.0"