Repository: php-fig/log
Branch: master
Commit: f16e1d5863e3
Files: 13
Total size: 10.4 KB
Directory structure:
gitextract_kqtper33/
├── .gitattributes
├── .gitignore
├── LICENSE
├── README.md
├── composer.json
└── src/
├── AbstractLogger.php
├── InvalidArgumentException.php
├── LogLevel.php
├── LoggerAwareInterface.php
├── LoggerAwareTrait.php
├── LoggerInterface.php
├── LoggerTrait.php
└── NullLogger.php
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
.gitattributes export-ignore
.gitignore export-ignore
================================================
FILE: .gitignore
================================================
vendor
================================================
FILE: LICENSE
================================================
Copyright (c) 2012 PHP Framework Interoperability Group
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================
FILE: README.md
================================================
PSR Log
=======
This repository holds all interfaces/classes/traits related to
[PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md).
Note that this is not a logger of its own. It is merely an interface that
describes a logger. See the specification for more details.
Installation
------------
```bash
composer require psr/log
```
Usage
-----
If you need a logger, you can use the interface like this:
```php
<?php
use Psr\Log\LoggerInterface;
class Foo
{
private $logger;
public function __construct(LoggerInterface $logger = null)
{
$this->logger = $logger;
}
public function doSomething()
{
if ($this->logger) {
$this->logger->info('Doing work');
}
try {
$this->doSomethingElse();
} catch (Exception $exception) {
$this->logger->error('Oh no!', array('exception' => $exception));
}
// do something useful
}
}
```
You can then pick one of the implementations of the interface to get a logger.
If you want to implement the interface, you can require this package and
implement `Psr\Log\LoggerInterface` in your code. Please read the
[specification text](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
for details.
================================================
FILE: composer.json
================================================
{
"name": "psr/log",
"description": "Common interface for logging libraries",
"keywords": ["psr", "psr-3", "log"],
"homepage": "https://github.com/php-fig/log",
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"require": {
"php": ">=8.0.0"
},
"autoload": {
"psr-4": {
"Psr\\Log\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}
================================================
FILE: src/AbstractLogger.php
================================================
<?php
namespace Psr\Log;
/**
* This is a simple Logger implementation that other Loggers can inherit from.
*
* It simply delegates all log-level-specific methods to the `log` method to
* reduce boilerplate code that a simple Logger that does the same thing with
* messages regardless of the error level has to implement.
*/
abstract class AbstractLogger implements LoggerInterface
{
use LoggerTrait;
}
================================================
FILE: src/InvalidArgumentException.php
================================================
<?php
namespace Psr\Log;
class InvalidArgumentException extends \InvalidArgumentException
{
}
================================================
FILE: src/LogLevel.php
================================================
<?php
namespace Psr\Log;
/**
* Describes log levels.
*/
class LogLevel
{
const EMERGENCY = 'emergency';
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
}
================================================
FILE: src/LoggerAwareInterface.php
================================================
<?php
namespace Psr\Log;
/**
* Describes a logger-aware instance.
*/
interface LoggerAwareInterface
{
/**
* Sets a logger instance on the object.
*/
public function setLogger(LoggerInterface $logger): void;
}
================================================
FILE: src/LoggerAwareTrait.php
================================================
<?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait
{
/**
* The logger instance.
*/
protected ?LoggerInterface $logger = null;
/**
* Sets a logger.
*/
public function setLogger(LoggerInterface $logger): void
{
$this->logger = $logger;
}
}
================================================
FILE: src/LoggerInterface.php
================================================
<?php
namespace Psr\Log;
/**
* Describes a logger instance.
*
* The message MUST be a string or object implementing __toString().
*
* The message MAY contain placeholders in the form: {foo} where foo
* will be replaced by the context data in key "foo".
*
* The context array can contain arbitrary data. The only assumption that
* can be made by implementors is that if an Exception instance is given
* to produce a stack trace, it MUST be in a key named "exception".
*
* See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
* for the full interface specification.
*/
interface LoggerInterface
{
/**
* System is unusable.
*
* @param mixed[] $context
*/
public function emergency(string|\Stringable $message, array $context = []): void;
/**
* Action must be taken immediately.
*
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param mixed[] $context
*/
public function alert(string|\Stringable $message, array $context = []): void;
/**
* Critical conditions.
*
* Example: Application component unavailable, unexpected exception.
*
* @param mixed[] $context
*/
public function critical(string|\Stringable $message, array $context = []): void;
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param mixed[] $context
*/
public function error(string|\Stringable $message, array $context = []): void;
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param mixed[] $context
*/
public function warning(string|\Stringable $message, array $context = []): void;
/**
* Normal but significant events.
*
* @param mixed[] $context
*/
public function notice(string|\Stringable $message, array $context = []): void;
/**
* Interesting events.
*
* Example: User logs in, SQL logs.
*
* @param mixed[] $context
*/
public function info(string|\Stringable $message, array $context = []): void;
/**
* Detailed debug information.
*
* @param mixed[] $context
*/
public function debug(string|\Stringable $message, array $context = []): void;
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param mixed[] $context
*
* @throws \Psr\Log\InvalidArgumentException
*/
public function log($level, string|\Stringable $message, array $context = []): void;
}
================================================
FILE: src/LoggerTrait.php
================================================
<?php
namespace Psr\Log;
/**
* This is a simple Logger trait that classes unable to extend AbstractLogger
* (because they extend another class, etc) can include.
*
* It simply delegates all log-level-specific methods to the `log` method to
* reduce boilerplate code that a simple Logger that does the same thing with
* messages regardless of the error level has to implement.
*/
trait LoggerTrait
{
/**
* System is unusable.
*/
public function emergency(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::EMERGENCY, $message, $context);
}
/**
* Action must be taken immediately.
*
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*/
public function alert(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::ALERT, $message, $context);
}
/**
* Critical conditions.
*
* Example: Application component unavailable, unexpected exception.
*/
public function critical(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::CRITICAL, $message, $context);
}
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*/
public function error(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::ERROR, $message, $context);
}
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*/
public function warning(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::WARNING, $message, $context);
}
/**
* Normal but significant events.
*/
public function notice(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::NOTICE, $message, $context);
}
/**
* Interesting events.
*
* Example: User logs in, SQL logs.
*/
public function info(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::INFO, $message, $context);
}
/**
* Detailed debug information.
*/
public function debug(string|\Stringable $message, array $context = []): void
{
$this->log(LogLevel::DEBUG, $message, $context);
}
/**
* Logs with an arbitrary level.
*
* @param mixed $level
*
* @throws \Psr\Log\InvalidArgumentException
*/
abstract public function log($level, string|\Stringable $message, array $context = []): void;
}
================================================
FILE: src/NullLogger.php
================================================
<?php
namespace Psr\Log;
/**
* This Logger can be used to avoid conditional log calls.
*
* Logging should always be optional, and if no logger is provided to your
* library creating a NullLogger instance to have something to throw logs at
* is a good way to avoid littering your code with `if ($this->logger) { }`
* blocks.
*/
class NullLogger extends AbstractLogger
{
/**
* Logs with an arbitrary level.
*
* @param mixed[] $context
*
* @throws \Psr\Log\InvalidArgumentException
*/
public function log($level, string|\Stringable $message, array $context = []): void
{
// noop
}
}
gitextract_kqtper33/
├── .gitattributes
├── .gitignore
├── LICENSE
├── README.md
├── composer.json
└── src/
├── AbstractLogger.php
├── InvalidArgumentException.php
├── LogLevel.php
├── LoggerAwareInterface.php
├── LoggerAwareTrait.php
├── LoggerInterface.php
├── LoggerTrait.php
└── NullLogger.php
SYMBOL INDEX (29 symbols across 8 files)
FILE: src/AbstractLogger.php
class AbstractLogger (line 12) | abstract class AbstractLogger implements LoggerInterface
FILE: src/InvalidArgumentException.php
class InvalidArgumentException (line 5) | class InvalidArgumentException extends \InvalidArgumentException
FILE: src/LogLevel.php
class LogLevel (line 8) | class LogLevel
FILE: src/LoggerAwareInterface.php
type LoggerAwareInterface (line 8) | interface LoggerAwareInterface
method setLogger (line 13) | public function setLogger(LoggerInterface $logger): void;
FILE: src/LoggerAwareTrait.php
type LoggerAwareTrait (line 8) | trait LoggerAwareTrait
method setLogger (line 18) | public function setLogger(LoggerInterface $logger): void
FILE: src/LoggerInterface.php
type LoggerInterface (line 20) | interface LoggerInterface
method emergency (line 27) | public function emergency(string|\Stringable $message, array $context ...
method alert (line 37) | public function alert(string|\Stringable $message, array $context = []...
method critical (line 46) | public function critical(string|\Stringable $message, array $context =...
method error (line 54) | public function error(string|\Stringable $message, array $context = []...
method warning (line 64) | public function warning(string|\Stringable $message, array $context = ...
method notice (line 71) | public function notice(string|\Stringable $message, array $context = [...
method info (line 80) | public function info(string|\Stringable $message, array $context = [])...
method debug (line 87) | public function debug(string|\Stringable $message, array $context = []...
method log (line 97) | public function log($level, string|\Stringable $message, array $contex...
FILE: src/LoggerTrait.php
type LoggerTrait (line 13) | trait LoggerTrait
method emergency (line 18) | public function emergency(string|\Stringable $message, array $context ...
method alert (line 29) | public function alert(string|\Stringable $message, array $context = []...
method critical (line 39) | public function critical(string|\Stringable $message, array $context =...
method error (line 48) | public function error(string|\Stringable $message, array $context = []...
method warning (line 59) | public function warning(string|\Stringable $message, array $context = ...
method notice (line 67) | public function notice(string|\Stringable $message, array $context = [...
method info (line 77) | public function info(string|\Stringable $message, array $context = [])...
method debug (line 85) | public function debug(string|\Stringable $message, array $context = []...
method log (line 97) | abstract public function log($level, string|\Stringable $message, arra...
FILE: src/NullLogger.php
class NullLogger (line 13) | class NullLogger extends AbstractLogger
method log (line 22) | public function log($level, string|\Stringable $message, array $contex...
Condensed preview — 13 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (12K chars).
[
{
"path": ".gitattributes",
"chars": 54,
"preview": ".gitattributes export-ignore\n.gitignore export-ignore\n"
},
{
"path": ".gitignore",
"chars": 7,
"preview": "vendor\n"
},
{
"path": "LICENSE",
"chars": 1085,
"preview": "Copyright (c) 2012 PHP Framework Interoperability Group\n\nPermission is hereby granted, free of charge, to any person obt"
},
{
"path": "README.md",
"chars": 1346,
"preview": "PSR Log\n=======\n\nThis repository holds all interfaces/classes/traits related to\n[PSR-3](https://github.com/php-fig/fig-s"
},
{
"path": "composer.json",
"chars": 555,
"preview": "{\n \"name\": \"psr/log\",\n \"description\": \"Common interface for logging libraries\",\n \"keywords\": [\"psr\", \"psr-3\", \""
},
{
"path": "src/AbstractLogger.php",
"chars": 414,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * This is a simple Logger implementation that other Loggers can inherit from.\n *\n * It s"
},
{
"path": "src/InvalidArgumentException.php",
"chars": 96,
"preview": "<?php\n\nnamespace Psr\\Log;\n\nclass InvalidArgumentException extends \\InvalidArgumentException\n{\n}\n"
},
{
"path": "src/LogLevel.php",
"chars": 336,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * Describes log levels.\n */\nclass LogLevel\n{\n const EMERGENCY = 'emergency';\n cons"
},
{
"path": "src/LoggerAwareInterface.php",
"chars": 231,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * Describes a logger-aware instance.\n */\ninterface LoggerAwareInterface\n{\n /**\n *"
},
{
"path": "src/LoggerAwareTrait.php",
"chars": 347,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * Basic Implementation of LoggerAwareInterface.\n */\ntrait LoggerAwareTrait\n{\n /**\n "
},
{
"path": "src/LoggerInterface.php",
"chars": 2770,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * Describes a logger instance.\n *\n * The message MUST be a string or object implementing"
},
{
"path": "src/LoggerTrait.php",
"chars": 2755,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * This is a simple Logger trait that classes unable to extend AbstractLogger\n * (because"
},
{
"path": "src/NullLogger.php",
"chars": 643,
"preview": "<?php\n\nnamespace Psr\\Log;\n\n/**\n * This Logger can be used to avoid conditional log calls.\n *\n * Logging should always be"
}
]
About this extraction
This page contains the full source code of the php-fig/log GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 13 files (10.4 KB), approximately 2.8k tokens, and a symbol index with 29 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.