firevel/stackdriver-log-channel
Laravel Stackdriver log channel for Google App Engine
Maintainers
Package info
github.com/firevel/stackdriver-log-channel
pkg:composer/firevel/stackdriver-log-channel
1.1.0
2023-08-15 19:01 UTC
Requires
- php: >=7.1
- google/cloud-error-reporting: ^0.19
- illuminate/support: >=8.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
- psr/log: >=3
Replaces
None
MIT ba6a0fd7dd0c6fb7ca83ce29fedaab70ac0db355
- Michael Slowik <slowik.michael.woop@gmail.com>
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
-
Install package with
composer require firevel/stackdriver-log-channel -
Add to
config/logging.php:
'stackdriver' => [
'driver' => 'custom',
'via' => Firevel\Stackdriver\CreateStackdriverLogger::class,
'level' => 'debug',
],
- Update your
app.yamlwith:
env_variables:
LOG_CHANNEL: stackdriver
