All Projects → SeasX → seas-logger

SeasX / seas-logger

Licence: other
An effective,fast,stable log package for PHP.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to seas-logger

management tools
A collection of scripts and packages to simplify OS X management.
Stars: ✭ 93 (+102.17%)
Mutual labels:  logger
Flogs
An Advanced Logging Framework develop in flutter that provides quick & simple logging solution.
Stars: ✭ 158 (+243.48%)
Mutual labels:  logger
PoShLog
🔩 PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/
Stars: ✭ 108 (+134.78%)
Mutual labels:  logger
php-currency-api
Standardized wrapper for popular currency rate APIs. Currently supports FixerIO, CurrencyLayer, Open Exchange Rates and Exchange Rates API.
Stars: ✭ 17 (-63.04%)
Mutual labels:  composer-package
BaseDevelop
an android project for now fashion open source framework
Stars: ✭ 24 (-47.83%)
Mutual labels:  logger
qqmap-region
腾讯位置服务中国标准行政区划数据 SDK
Stars: ✭ 22 (-52.17%)
Mutual labels:  composer-package
docker-symfony
🐳 Environment for a Symfony application using Docker.
Stars: ✭ 42 (-8.7%)
Mutual labels:  composer-package
Slack-logger-bot
Simple slack bot that can save all of your team messages on your server so that you can still read them even if you exceeds the 10,000 messages in the archive.
Stars: ✭ 47 (+2.17%)
Mutual labels:  logger
handlers
Go's HTTP handlers I use in my projects
Stars: ✭ 53 (+15.22%)
Mutual labels:  logger
logger
All you need to log with Bref on AWS Lambda.
Stars: ✭ 30 (-34.78%)
Mutual labels:  logger
forcelog
A structured, extensible logger for Salesforce Apex
Stars: ✭ 37 (-19.57%)
Mutual labels:  logger
Laravel-Crud-Generator
A Simple Laravel Library that allows to create crud operation with a single command
Stars: ✭ 20 (-56.52%)
Mutual labels:  composer-package
php-base-project
A Composer ready package to start a new PHP 7 project
Stars: ✭ 17 (-63.04%)
Mutual labels:  composer-package
rest-api-node-typescript
This is a simple REST API with node and express with typescript
Stars: ✭ 154 (+234.78%)
Mutual labels:  logger
react-native-logger
Async aware logger for react-native with grouping and filter feature
Stars: ✭ 20 (-56.52%)
Mutual labels:  logger
Multiplatform-Log
Kotlin Multi Platform Logger, for android an ios : Logcat & print
Stars: ✭ 49 (+6.52%)
Mutual labels:  logger
puts debuggerer
Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.
Stars: ✭ 82 (+78.26%)
Mutual labels:  logger
aws-upload
🌈 A delicious CLI tool for uploading files to ec2
Stars: ✭ 39 (-15.22%)
Mutual labels:  composer-package
LoggingAdvanced
Improved and patched .NET Core console logger.
Stars: ✭ 20 (-56.52%)
Mutual labels:  logger
missionlog
🚀 lightweight logging • supports level based filtering and tagging • weighs in at around 500 bytes
Stars: ✭ 19 (-58.7%)
Mutual labels:  logger

SeasLogger

An effective,fast,stable log package for PHP base SeasLog

Build Status Scrutinizer Code Quality Code Coverage Code Intelligence Status Latest Stable Version Total Downloads License

This library implements the PSR-3 and PSR-4

Installation

Install the latest version with

$ composer require seasx/seas-logger

Basic Usage

<?php

use Seasx\SeasLogger\Logger;

$logger = new Logger();

// add records to the log
$logger->warning('Hello');
$logger->error('SeasLogger');

configuration for laravel/lumen >=5.6

add seaslog configuration in config/logging.php

'channels' => [
    ...
    'seaslog' => [
        'driver' => 'custom',
        'via' => \Seasx\SeasLogger\Logger::class,
        'path' => '/path/to/logfile',
    ],
    ...
]

edit .env file to use seaslog

LOG_CHANNEL=seaslog

See more

https://github.com/SeasX/SeasLog

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].