firevel/stackdriver-log-channel

Laravel Stackdriver log channel for Google App Engine

Maintainers

👁 sl0wik

Package info

github.com/firevel/stackdriver-log-channel

pkg:composer/firevel/stackdriver-log-channel

Statistics

Installs: 21 915

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

1.1.0 2023-08-15 19:01 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

Replaces

None

MIT ba6a0fd7dd0c6fb7ca83ce29fedaab70ac0db355

  • Michael Slowik <slowik.michael.woop@gmail.com>

loglaravelapp enginestackdriverfirevel

This package is auto-updated.

Last update: 2026-06-13 07:43:52 UTC


README

Stackdriver log channel for Laravel compatible with Google App Engine.

This package is now DEPRECATED

Inside of Google Cloud you can send logs to Stackdriver without custom driver using env:

 LOG_CHANNEL=stderr
 LOG_STDERR_FORMATTER=Monolog\Formatter\GoogleCloudLoggingFormatter

Installation

  1. Install package with composer require firevel/stackdriver-log-channel

  2. Add to config/logging.php:

 'stackdriver' => [
 'driver' => 'custom',
 'via' => Firevel\Stackdriver\CreateStackdriverLogger::class,
 'level' => 'debug',
 ],
  1. Update your app.yaml with:
env_variables:
 LOG_CHANNEL: stackdriver