PHPackages                             larawelders/scheduler-event-logger - 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. larawelders/scheduler-event-logger

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

larawelders/scheduler-event-logger
==================================

Log Laravel scheduler lifecycle events.

00PHPCI passing

Since May 7Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/larawelders/scheduler-event-logger)[ Packagist](https://packagist.org/packages/larawelders/scheduler-event-logger)[ RSS](/packages/larawelders-scheduler-event-logger/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Scheduler Event Logger
======================

[](#scheduler-event-logger)

Log Laravel scheduler lifecycle events to a dedicated `schedule` log channel.

Support Matrix
--------------

[](#support-matrix)

PackagePHPLaravel`1.x``8.2+``12.x` / `13.x`Notes:

- Laravel 12 supports PHP `8.2` through `8.5`.
- Laravel 13 requires PHP `8.3+`, so PHP `8.2` is only valid with Laravel 12.

What it logs
------------

[](#what-it-logs)

- `ScheduledTaskStarting` at `info`
- `ScheduledTaskFinished` at `info`
- `ScheduledTaskFailed` at `error`
- `ScheduledTaskSkipped` at `info`
- `ScheduledBackgroundTaskFinished` at `info`
- `SchedulePaused` at `info`
- `ScheduleResumed` at `info`

Installation
------------

[](#installation)

```
composer require larawelders/scheduler-event-logger
```

The package uses Laravel package discovery, so no manual provider registration is required.

The package registers a default `schedule` log channel at runtime if your application does not already define one. By default, it uses a `daily` channel that writes to date-named files under `storage/logs/schedule.log`.

If you want to customize the channel name or logger configuration, publish the package config:

```
php artisan vendor:publish --tag=scheduler-event-logger-config
```

The published config lets you change both the channel name and the underlying channel definition:

```
'channel' => 'schedule',

'channel_config' => [
    'driver' => 'daily',
    'path' => storage_path('logs/schedule.log'),
    'level' => 'debug',
],
```

If your application already defines a channel with the configured name in `config/logging.php`, the application definition takes precedence:

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

Example Output
--------------

[](#example-output)

```
[framework/schedule-9f57b5c9...] Starting task "daily-report" on timezone UTC
[framework/schedule-9f57b5c9...] Finished task "daily-report" on timezone UTC with exit code 0 in 0.125s
[framework/schedule-a1b3f70e...] Failed task `php artisan sync:vendors` after RuntimeException: API timeout
[framework/schedule-a1b3f70e...] Skipped task `php artisan sync:vendors`
[framework/schedule-70c74e7f...] Background task finished `php artisan imports:run` in background with exit code 0
[schedule] Paused
[schedule] Resumed

```

Development
-----------

[](#development)

```
composer install
composer run analyse
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance61

Regular maintenance activity

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 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://www.gravatar.com/avatar/135d8104cdf926e2b15b6a06413153a9582729f0cd48ccba7bc7e62878a39781?d=identicon)[szepeviktor](/maintainers/szepeviktor)

---

Top Contributors

[![szepeviktor](https://avatars.githubusercontent.com/u/952007?v=4)](https://github.com/szepeviktor "szepeviktor (2 commits)")

### Embed Badge

![Health badge](/badges/larawelders-scheduler-event-logger/health.svg)

```
[![Health](https://phpackages.com/badges/larawelders-scheduler-event-logger/health.svg)](https://phpackages.com/packages/larawelders-scheduler-event-logger)
```

###  Alternatives

[psr/log

Common interface for logging libraries

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

API for OpenTelemetry PHP.

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

SDK for OpenTelemetry PHP.

2326.5M315](/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)
