Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joomla-framework/log
[DEPRECATED] Joomla Framework Log Package
https://github.com/joomla-framework/log
joomla joomla-framework logging php psr-3
Last synced: 3 months ago
JSON representation
[DEPRECATED] Joomla Framework Log Package
- Host: GitHub
- URL: https://github.com/joomla-framework/log
- Owner: joomla-framework
- License: gpl-2.0
- Created: 2013-02-24T03:25:26.000Z (almost 12 years ago)
- Default Branch: 1.x-dev
- Last Pushed: 2021-09-18T11:01:27.000Z (over 3 years ago)
- Last Synced: 2024-06-21T05:03:52.092Z (8 months ago)
- Topics: joomla, joomla-framework, logging, php, psr-3
- Language: PHP
- Homepage:
- Size: 109 KB
- Stars: 4
- Watchers: 13
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## The Log Package [![Build Status](https://ci.joomla.org/api/badges/joomla-framework/log/status.svg)](https://ci.joomla.org/joomla-framework/log)
[![Latest Stable Version](https://poser.pugx.org/joomla/log/v/stable)](https://packagist.org/packages/joomla/log) [![Total Downloads](https://poser.pugx.org/joomla/log/downloads)](https://packagist.org/packages/joomla/log) [![Latest Unstable Version](https://poser.pugx.org/joomla/log/v/unstable)](https://packagist.org/packages/joomla/log) [![License](https://poser.pugx.org/joomla/log/license)](https://packagist.org/packages/joomla/log)
### Deprecated
The `joomla/log` package has been deprecated. No further updates are planned.
### Introduction
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.
### Logging priority
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::DEBUGFor 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.
### Logging to files *(formattedtext)*
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.
```php
// 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:
#
#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 - LoggedThe 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:
```php
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#### Additional options with formattedtext
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.### Changing the name of the log 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:
```php
// Log to a specific text file.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'mylogs.php'
)
);
```#### Logging different priorities to different files
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.
```php
// 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
);
```#### Logging specific categories to a file
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.
```php
// 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:
```php
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.
#### Splitting up logs by date
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.
```php
// Get the date.
$date = date('Y-m-d');// Add the logger.
Joomla\Log\Log::addLogger(
array(
'text_file' => 'com_hello.'.$date.'.php'
)
);
```#### Changing the format of the log message
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.
```php
// 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.
```php
// 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.
### Logging to the database
The "database" logger allows you to log message to a database table. The create syntax for the default table is as follows:
```sql
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.
```php
// 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:
```php
// 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.
## Installation via Composer
Add `"joomla/log": "~1.0"` to the require block in your composer.json and then run `composer install`.
```json
{
"require": {
"joomla/log": "~1.0"
}
}
```Alternatively, you can simply run the following from the command line:
```sh
composer require joomla/log "~1.0"
```