PHPackages                             hexmakina/log-laddy - 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. hexmakina/log-laddy

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

hexmakina/log-laddy
===================

LogLaddy is a PSR-3 Logger Interface implementation, but aimed at user interface messaging

0.0.7(4y ago)0217[2 issues](https://github.com/HexMakina/LogLaddy/issues)1mitPHPPHP &gt;=7.0

Since Aug 8Pushed 2y ago1 watchersCompare

[ Source](https://github.com/HexMakina/LogLaddy)[ Packagist](https://packagist.org/packages/hexmakina/log-laddy)[ RSS](/packages/hexmakina-log-laddy/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (7)Dependencies (3)Versions (8)Used By (1)

LogLaddy
========

[](#logladdy)

The LogLaddy is an implementation of the PSR-3 Logger Interface, but aimed at user interface messaging It relies on \\Psr\\Log\\LoggerTrait and \\HexMakina\\Debugger\\Debugger

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/49c47219d582338bf76d82d8eabdcda2b2c0210e28f328ab480b68f283a3fd38/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4865784d616b696e612f4c6f674c616464792f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/HexMakina/LogLaddy/?branch=main)[![PSR-3 Compliant](https://camo.githubusercontent.com/ffa38f0477c93333e85fb1a00466bb9984029c17e788e18dac39bdb0ef423f4e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5053522d332d627269676874677265656e)](https://camo.githubusercontent.com/ffa38f0477c93333e85fb1a00466bb9984029c17e788e18dac39bdb0ef423f4e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5053522d332d627269676874677265656e)[![PSR-12 Compliant](https://camo.githubusercontent.com/f5517c4a8a2438b2152b62762e852385c588ff2c1d8a028ba56d0626e1151e94/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5053522d31322d627269676874677265656e)](https://camo.githubusercontent.com/f5517c4a8a2438b2152b62762e852385c588ff2c1d8a028ba56d0626e1151e94/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5053522d31322d627269676874677265656e)[![PHP 7.0 Required](https://camo.githubusercontent.com/c3f404881a59cc0a4fcbd46c5f4f02cac8f01f589fc818f74538a88353f854fb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372e302d627269676874677265656e)](https://camo.githubusercontent.com/c3f404881a59cc0a4fcbd46c5f4f02cac8f01f589fc818f74538a88353f854fb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372e302d627269676874677265656e)[![License](https://camo.githubusercontent.com/569d9e3561f5885f12e3523ab6338f400ca986642af5d7d7e9e0912223e824a0/687474703a2f2f706f7365722e707567782e6f72672f6865786d616b696e612f6c6f672d6c616464792f6c6963656e7365)](https://packagist.org/packages/hexmakina/log-laddy)[![Latest Stable Version](https://camo.githubusercontent.com/3b599cbd68139f4307771098a2da8ad8385dd603152308478d8693e75dbdbc5f/687474703a2f2f706f7365722e707567782e6f72672f6865786d616b696e612f6c6f672d6c616464792f76)](https://packagist.org/packages/hexmakina/log-laddy)

Usage
=====

[](#usage)

To create messages outside of errors and exceptions, first initialise the LogLaddy, with a compatible state agent (for storing user messages)

```
$l = new LogLaddy(StateAgentInterface $agent);

```

Then call one of the messaging method:

```
// for detailed debug information
$l->debug($message, array $context = array())

// for interesting events
$l->info($message, array $context = array())

// for normal but significant events (and success messages)
$l->notice($message, array $context = array())

// for exceptional occurrences that are not errors
$l->warning($message, array $context = array())

// for runtime errors that do not require immediate action but should typically be logged and monitored
$l->error($message, array $context = array())

// for critical condition (Application component unavailable, unexpected exception)
$l->critical($message, array $context = array())

// when action must be taken immediately (website down, database unavailable, etc.)
$l->alert($message, array $context = array())

// when the system is unusable
$l->emergency($message, array $context = array())

```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

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

Every ~7 days

Total

7

Last Release

1747d ago

PHP version history (2 changes)0.0.1PHP &gt;=7.4

0.0.3PHP &gt;=7.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20891495?v=4)[HexMakina](/maintainers/HexMakina)[@HexMakina](https://github.com/HexMakina)

---

Top Contributors

[![HexMakina](https://avatars.githubusercontent.com/u/20891495?v=4)](https://github.com/HexMakina "HexMakina (29 commits)")

---

Tags

logphppsr-3user-experience

### Embed Badge

![Health badge](/badges/hexmakina-log-laddy/health.svg)

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

###  Alternatives

[sentry/sentry

PHP SDK for Sentry (http://sentry.io)

1.9k247.1M331](/packages/sentry-sentry)[symfony/cache

Provides extended PSR-6, PSR-16 (and tags) implementations

4.2k373.5M3.3k](/packages/symfony-cache)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[illuminate/log

The Illuminate Log package.

6225.3M621](/packages/illuminate-log)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[ecotone/ecotone

Enterprise architecture layer for Laravel and Symfony — CQRS, Event Sourcing, Durable Workflows (Sagas, Orchestrators), Projections, and Outbox messaging via PHP attributes.

564576.7k49](/packages/ecotone-ecotone)

PHPackages © 2026

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