PHPackages                             qshurick/pro\_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. qshurick/pro\_log

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

qshurick/pro\_log
=================

Logger

1218PHP

Since Jun 29Pushed 12y ago1 watchersCompare

[ Source](https://github.com/qshurick/Pro_Log)[ Packagist](https://packagist.org/packages/qshurick/pro_log)[ RSS](/packages/qshurick-pro-log/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Initialization
--------------

[](#initialization)

Ensure in application.ini:

```
    autoloaderNamespaces[] = "Logger_"
    pluginPaths.Logger_Application_Resource_ = "Logger/Application/Resource"
    config.logger = APPLICATION_PATH "/configs/log.ini"

```

Ensure in `include_path` directory `'vendor/qshurick/pro_log/library'`, e.g. in `public_html/index.php`:

```
    set_include_path(implode(PATH_SEPARATOR, array(
        realpath(APPLICATION_PATH . '/../library'),
        realpath(APPLICATION_PATH . '/../vendor/qshurick/pro_log/library'),
        get_include_path(),
    )));
    require_once APPLICATION_PATH . '/../vendor/autoload.php';

```

Usage
-----

[](#usage)

- with Zend\_Registry:

```
    // Logger_Application_Logger
    Zend_Registry::get('logger')->log('Log message');
```

- direct:

```
    // Logger_Application_Logger
    Logger_Application_Logger::getInstance()->log('Log message');
```

- embed:

```
    class SomeLoggedClass {
        /** ... */
        function init() {
            /** ... */
            // Zend_Log
            $this->logger = Zend_Registry::get('logger')->ensureStream('custom-logger');
            $this->logger->log('Log message', Zend_Log::INFO);
            /** ... */
        }
        /** ... */
    }
```

- deprecated (just for current compatibility)

```
    Pro_Log::log('Log message');
```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2393697?v=4)[Alexander Malyk](/maintainers/qshurick)[@qshurick](https://github.com/qshurick)

---

Top Contributors

[![qshurick](https://avatars.githubusercontent.com/u/2393697?v=4)](https://github.com/qshurick "qshurick (24 commits)")

### Embed Badge

![Health badge](/badges/qshurick-pro-log/health.svg)

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

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B10.9k](/packages/psr-log)[open-telemetry/api

API for OpenTelemetry PHP.

1938.5M263](/packages/open-telemetry-api)[open-telemetry/sdk

SDK for OpenTelemetry PHP.

2326.5M316](/packages/open-telemetry-sdk)[illuminated/console-logger

Logging and Notifications for Laravel Console Commands.

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

PHPackages © 2026

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