PHPackages                             enkidu/laravel-log - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. enkidu/laravel-log

AbandonedArchivedLibrary[Logging &amp; Monitoring](/categories/logging)

enkidu/laravel-log
==================

Laravel Log

v1.0.0(6y ago)02MITPHPPHP ^7.2

Since Mar 27Pushed 6y ago1 watchersCompare

[ Source](https://github.com/alaa-almaliki/laravel-log)[ Packagist](https://packagist.org/packages/enkidu/laravel-log)[ RSS](/packages/enkidu-laravel-log/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (4)Versions (2)Used By (0)

Laravel Log
===========

[](#laravel-log)

Existing Logs
-------------

[](#existing-logs)

Exception Log

```
try {
        throw new Exception('Test');
    } catch (Exception $exception) {
        \Enkidu\Log\Facades\ExceptionLogger::logException($exception); // exception.log
    }
```

Debug Log

```
\Enkidu\Log\Facades\DebugLogger::info('Test'); // debug.log
```

Creating custom log
-------------------

[](#creating-custom-log)

- Add logging channel in `config/logging.php`

```
   'channels' => [
   ...
   'test' => [
        'driver' => 'single',
        'path' => storage_path('logs/test.log'),
        'level' => 'info',
   ],
  ...
]
```

- Create custom logging class

```
class TestLogger extends BaseLogger
{
    /**
     * @inheritDoc
     */
    protected function getLoggingChannel(): string
    {
        return 'test';
    }
}
```

How to use

```
$test = new \App\Logger\TestLogger;
 $test->info('Test'); // test.log
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2237d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5c696bf597ea0fdd1fd166ce20d7c15c873f16547e874bd67ecb70c4abfdb2cb?d=identicon)[alaa-almaliki](/maintainers/alaa-almaliki)

---

Top Contributors

[![alaa-almaliki](https://avatars.githubusercontent.com/u/7830984?v=4)](https://github.com/alaa-almaliki "alaa-almaliki (5 commits)")

---

Tags

laravellogginglaravel

### Embed Badge

![Health badge](/badges/enkidu-laravel-log/health.svg)

```
[![Health](https://phpackages.com/badges/enkidu-laravel-log/health.svg)](https://phpackages.com/packages/enkidu-laravel-log)
```

###  Alternatives

[arcanedev/log-viewer

Provides a Log Viewer for Laravel

2.4k6.7M51](/packages/arcanedev-log-viewer)[ytake/laravel-aspect

Aspect Oriented Programming library for laravel framework, and lumen

138132.2k1](/packages/ytake-laravel-aspect)[illuminated/console-logger

Logging and Notifications for Laravel Console Commands.

8674.9k](/packages/illuminated-console-logger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
