1. Go to this page and download the library: Download elephox/logging library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
elephox / logging example snippets
use Elephox\Logging\StandardSink;
use Elephox\Logging\SingleSinkLogger;
use Elephox\Logging\Contract\Sink;
use Elephox\Logging\LogLevel;
// create a logger with only one sink, a sink which logs to STDOUT and STDERR
$logger = new SingleSinkLogger(new StandardSink());
$logger->info('Hello world!'); // Prints to STDOUT: Hello world!
$logger->warning('This is a warning!'); // Prints to STDERR: This is a warning!
// You can also log meta data:
$logger->info('Hello world!', ['foo' => 'bar']);
// You can implement your own sink:
class MySink implements Sink
{
public function write(string $message, LogLevel $level, array $metaData): void
{
$this->myThirdPartyLoggingService->log($message, $level->value, $metaData);
}
}
$mySinkLogger = new SingleSinkLogger(new MySink());
$mySinkLogger->alert("This is an alert!");
use Elephox\Logging\SimpleFormatColorSink;
use Elephox\Logging\EnhancedMessageSink;
$standardSink = new StandardSink();
$formattedSink = new SimpleFormatColorSink($standardSink);
$formattedSink->write(LogLevel::INFO, '<blue>Hello</blue> <green>world</green>!', []);
// Prints a blue "Hello" and a green "world" to STDOUT
$enhancedSink = new EnhancedMessageSink($formattedSink);
$enhancedSink->write(LogLevel::INFO, '<blue>Hello</blue> <green>world</green>!', []);
// Prints a blue "Hello" and a green "world" to STDOUT, with a timestamp and a log level
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.