イントロダクションIntroduction
アプリケーションで発生している事象を確実に捕らえるため、Laravelはログメッセージをファイルやシステムエラーログ、さらにチーム全体に知らせるためのSlack通知も可能な、堅牢なログサービスを提供しています。To help you learn more about what's happening within your application, Laravel provides robust logging services that allow you to log messages to files, the system error log, and even to Slack to notify your entire team.
そのために、Laravelは多くのパワフルなログハンドラをサポートしている、Monologライブラリーを活用しています。Laravelはそうしたハンドラの設定を簡単にできるようにし、アプリケーションのログ処理に合わせカスタマイズするため、ハンドラを多重に使ったり、マッチングできるようにしています。Under the hood, Laravel utilizes the Monolog[https://github.com/Seldaek/monolog] library, which provides support for a variety of powerful log handlers. Laravel makes it a cinch to configure these handlers, allowing you to mix and match them to customize your application's log handling.
設定Configuration
アプリケーションのログシステムの設定はすべて、config/logging.php
設定ファイルに用意されています。このファイルはアプリケーションのログチャンネルを設定できるため、使用可能なチャンネルやその他のオプションをしっかりとレビューしてください。よく使用されるオプションを以降からレビューします。All of the configuration for your application's logging system is housed in the config/logging.php
configuration file. This file allows you to configure your application's log channels, so be sure to review each of the available channels and their options. We'll review a few common options below.
デフォルトでは、Laravelはstack
チャンネルをメッセージをログする場合に使用します。stack
チャンネルは、複数のログチャンネルを一つのログチャンネルへ集結するために使用します。スタックの構築に関する詳細は、このドキュメントで後ほど説明します。By default, Laravel will use the stack
channel when logging messages. The stack
channel is used to aggregate multiple log channels into a single channel. For more information on building stacks, check out the documentation below[#building-log-stacks].
チャンネル名の設定Configuring The Channel Name
Monologはデフォルトでproduction
やlocal
のような、現在の環境と一致する「チャンネル名」でインスタンス化されます。この値を変更するには、チャンネルの設定にname
オプションを追加してください。By default, Monolog is instantiated with a "channel name" that matches the current environment, such as production
or local
. To change this value, add a name
option to your channel's configuration:
'stack' => [
'driver' => 'stack',
'name' => 'channel-name',
'channels' => ['single', 'slack'],
],
利用可能なチャンネルドライバAvailable Channel Drivers
名前Name | 説明Description |
---|---|
stack stack |
「マルチチャンネル」チャンネルを作成するためのラッパー機能A wrapper to facilitate creating "multi-channel" channels |
single single |
シングルファイル/パスベースのロガーチャンネル(StreamHandler )A single file or path based logger channel (StreamHandler ) |
daily daily |
RotatingFileHandler ベースの毎日ファイルを切り替えるMonologドライバA RotatingFileHandler based Monolog driver which rotates daily |
slack slack |
SlackWebhookHandler ベースのMonologドライバA SlackWebhookHandler based Monolog driver |
papertrail papertrail |
SyslogUdpHandler ベースのMonologドライバA SyslogUdpHandler based Monolog driver |
syslog syslog |
SyslogHandler ベースのMonologドライバA SyslogHandler based Monolog driver |
errorlog errorlog |
ErrorLogHandler ベースのMonologドライバA ErrorLogHandler based Monolog driver |
monolog monolog |
サポートしているMonologハンドラをどれでも使用できる、MonologファクトリドライバA Monolog factory driver that may use any supported Monolog handler |
custom custom |
チャンネルを生成するため、指定したファクトリを呼び出すドライバA driver that calls a specified factory to create a channel |
">Tip!!
monolog
とcustom
ドライバの詳細は、上級チャンネルカスタマイズのドキュメントを確認し、学んでください。{tip} Check out the documentation on advanced channel customization[#advanced-monolog-channel-customization] to learn more about themonolog
andcustom
drivers.
シングルファイルとディリーチャンネルの設定Configuring The Single and Daily Channels
single
とdaily
チャンネルは3つ設定オプションを持っています。bubble
、permission
、locking
です。The single
and daily
channels have three optional configuration options: bubble
, permission
, and locking
.
名前Name | 説明Description | デフォルト値Default |
---|---|---|
bubble bubble |
処理後に他のチャンネルへメッセージをバブルアップさせるかIndicates if messages should bubble up to other channels after being handled | true true |
permission permission |
ログファイルのパーミッションThe log file's permissions | 0644 0644 |
locking locking |
書き込む前にログファイルのロックを試みるAttempt to lock the log file before writing to it | false false |
Papertrailチャンネルの設置Configuring The Papertrail Channel
papertrail
チャンネルでは、url
とport
設定オプションが必要です。Papertrailから、それらの値を入手できます。The papertrail
channel requires the url
and port
configuration options. You can obtain these values from Papertrail[https://help.papertrailapp.com/kb/configuration/configuring-centralized-logging-from-php-apps/#send-events-from-php-app].
Slackチャンネルの設定Configuring The Slack Channel
slack
チャンネルには、url
設定オプションが必須です。このURLはSlackチームに対して設定されている、incoming webhookへのURLと一致させる必要があります。デフォルトでSlackはcritical
レベル以上のログのみを受け付けます。しかしながら、logging
設定ファイルでこれを調整可能です。The slack
channel requires a url
configuration option. This URL should match a URL for an incoming webhook[https://slack.com/apps/A0F7XDUAZ-incoming-webhooks] that you have configured for your Slack team. By default, Slack will only receive logs at the critical
level and above; however, you can adjust this in your logging
configuration file.
ログスタックの構築Building Log Stacks
先に説明した通り、stack
ドライバーは、複数のチャンネルを一つのログチャンネルへまとめるために使用します。ログスタックの使用方法を説明するため、ある実働環境に対する設定例を見てみましょう。As previously mentioned, the stack
driver allows you to combine multiple channels into a single log channel. To illustrate how to use log stacks, let's take a look at an example configuration that you might see in a production application:
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['syslog', 'slack'],
],
'syslog' => [
'driver' => 'syslog',
'level' => 'debug',
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => 'critical',
],
],
では、個別にこの設定を確認しましょう。最初に、stack
チャンネルがchannels
オプションによりsyslog
とslack
、2つのチャンネルをまとめていることに注目してください。Let's dissect this configuration. First, notice our stack
channel aggregates two other channels via its channels
option: syslog
and slack
. So, when logging messages, both of these channels will have the opportunity to log the message.
ログレベルLog Levels
上記の例で、syslog
とslack
チャンネル設定の中に、level
設定オプションが存在していることに注目です。このオプションは、そのチャンネルでメッセージをログする、最低の「レベル」を定めるオプションです。Laravelのログサービスを動かしているMonologは、RFC 5424規約で定められている全ログレベルが使用できます。emergencyとalert、critical、error、warning、notice、info、debugです。Take note of the level
configuration option present on the syslog
and slack
channel configurations in the example above. This option determines the minimum "level" a message must be in order to be logged by the channel. Monolog, which powers Laravel's logging services, offers all of the log levels defined in the RFC 5424 specification[https://tools.ietf.org/html/rfc5424]: emergency, alert, critical, error, warning, notice, info, and debug.
debug
メソッドを使用し、メッセージをログしてみることを想像しましょう。So, imagine we log a message using the debug
method:
Log::debug('An informational message.');
上記設定では、syslog
チャンネルにより、システムログへメッセージを書き込みます。しかしながら、エラーメッセージはcritical
以上ではないため、Slackには送られません。ところが、emergency
メッセージをログする場合、両方のチャンネルに対する最低の基準レベル以上のため、システムログとSlackの両方へ送られます。Given our configuration, the syslog
channel will write the message to the system log; however, since the error message is not critical
or above, it will not be sent to Slack. However, if we log an emergency
message, it will be sent to both the system log and Slack since the emergency
level is above our minimum level threshold for both channels:
Log::emergency('The system is down!');
ログメッセージの記述Writing Log Messages
Log
ファサードを使い、情報をログできます。先に説明したように、ロガーはRFC 5424規約に定義されている、emergency、alert、critical、error、warning、notice、info、debugの8ログレベルを提供しています。You may write information to the logs using the Log
facade[/docs/{{version}}/facades]. As previously mentioned, the logger provides the eight logging levels defined in the RFC 5424 specification[https://tools.ietf.org/html/rfc5424]: emergency, alert, critical, error, warning, notice, info and debug:
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
ログメッセージレベルに応じたメソッドを呼び出してください。デフォルトでは、config/logging.php
設定ファイルで定義されているデフォルトログチャンネルへ、メッセージが書き込まれます。So, you may call any of these methods to log a message for the corresponding level. By default, the message will be written to the default log channel as configured by your config/logging.php
configuration file:
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\User;
use Illuminate\Support\Facades\Log;
class UserController extends Controller
{
/**
* 指定したユーザーのプロファイルを表示
*
* @param int $id
* @return Response
*/
public function showProfile($id)
{
Log::info('Showing user profile for user: '.$id);
return view('user.profile', ['user' => User::findOrFail($id)]);
}
}
文脈情報Contextual Information
ログメソッドには、文脈情報の配列を渡すことも可能です。この文脈情報は、ログメッセージに整形され、表示されます。An array of contextual data may also be passed to the log methods. This contextual data will be formatted and displayed with the log message:
Log::info('User failed to login.', ['id' => $user->id]);
指定チャンネルへの記述Writing To Specific Channels
アプリケーションのデフォルトチャンネルの代わりに、別のチャンネルへメッセージをログしたい場合もあります。設定ファイルに定義してあるチャンネルをLog
ファサードのchannel
メソッドを使い取得し、ログしてください。Sometimes you may wish to log a message to a channel other than your application's default channel. You may use the channel
method on the Log
facade to retrieve and log to any channel defined in your configuration file:
Log::channel('slack')->info('Something happened!');
複数チャンネルで構成されたログスタックをオンデマンドで生成したい場合は、stack
メソッドを使います。If you would like to create an on-demand logging stack consisting of multiple channels, you may use the stack
method:
Log::stack(['single', 'slack'])->info('Something happened!');
Monologチャンネルの上級カスタマイズAdvanced Monolog Channel Customization
チャンネル用MonologカスタマイズCustomizing Monolog For Channels
既存チャンネルに対するMonologの設定方法を複雑にコントロールする必要がある場合もあり得ます。たとえば、指定したチャンネルハンドラに対し、MonologのFormatterInterface
カスタム実装を設定したい場合です。Sometimes you may need complete control over how Monolog is configured for an existing channel. For example, you may want to configure a custom Monolog FormatterInterface
implementation for a given channel's handlers.
そのためには、チャンネルの設定で、tap
配列を定義します。tap
配列は、生成された後のMonologインスタンスをカスタマイズ(もしくは利用 : "tap
into")する機会を与える、クラスのリストを含んでいる必要があります。To get started, define a tap
array on the channel's configuration. The tap
array should contain a list of classes that should have an opportunity to customize (or "tap" into) the Monolog instance after it is created:
'single' => [
'driver' => 'single',
'tap' => [App\Logging\CustomizeFormatter::class],
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
],
チャンネルに対するtap
オプションを定義したら、Monologインスタンスをカスタマイズするクラスを定義する準備が整いました。このクラスはIlluminate\Log\Logger
インスタンスを受け取る、__invoke
メソッドのみ必要です。Illuminate\Log\Logger
インスタンスは、すべてのメソッドを裏で動作するMonologインスタンスへ送るプロキシクラスです。Once you have configured the tap
option on your channel, you're ready to define the class that will customize your Monolog instance. This class only needs a single method: __invoke
, which receives an Illuminate\Log\Logger
instance. The Illuminate\Log\Logger
instance proxies all method calls to the underlying Monolog instance:
<?php
namespace App\Logging;
class CustomizeFormatter
{
/**
* 渡されたロガーインスタンスのカスタマイズ
*
* @param \Illuminate\Log\Logger $logger
* @return void
*/
public function __invoke($logger)
{
foreach ($logger->getHandlers() as $handler) {
$handler->setFormatter(...);
}
}
}
サービスコンテナにより、依存解決されます。そのため、コンストラクタで要求した依存は、自動的に注入されます。{tip} All of your "tap" classes are resolved by the service container[/docs/{{version}}/container], so any constructor dependencies they require will automatically be injected.
">Tip!! すべての"tap"クラスは、
Monologハンドラチャンネルの作成Creating Monolog Handler Channels
Monologはバラエティーに富んだ利用可能なハンドラを用意しています。あるケースでは、生成したいロガーのタイプが、単に特定のハンドラを持つMonologドライバであることがあります。こうしたチャンネルはmonolog
ドライバーを使用し、生成できます。Monolog has a variety of available handlers[https://github.com/Seldaek/monolog/tree/master/src/Monolog/Handler]. In some cases, the type of logger you wish to create is merely a Monolog driver with an instance of a specific handler. These channels can be created using the monolog
driver.
monolog
ドライバーを使用する場合、インスタンス化するハンドラを指定するために、handler
設定オプションを使います。任意のコンストラクタパラメータを指定する必要がある場合は、with
設定オプションを使用します。When using the monolog
driver, the handler
configuration option is used to specify which handler will be instantiated. Optionally, any constructor parameters the handler needs may be specified using the with
configuration option:
'logentries' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\SyslogUdpHandler::class,
'with' => [
'host' => 'my.logentries.internal.datahubhost.company.com',
'port' => '10000',
],
],
MonologフォーマッターMonolog Formatters
monolog
ドライバーを使用する場合、Monolog LineFormatter
をデフォルトフォーマッターとして使用します。しかし、フォーマッターのタイプをカスタマイズする必要がある場合は、formatter
とformatter_with
設定オプションを使用します。When using the monolog
driver, the Monolog LineFormatter
will be used as the default formatter. However, you may customize the type of formatter passed to the handler using the formatter
and formatter_with
configuration options:
'browser' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\BrowserConsoleHandler::class,
'formatter' => Monolog\Formatter\HtmlFormatter::class,
'formatter_with' => [
'dateFormat' => 'Y-m-d',
],
],
Monologハンドラが提供する自身のフォーマッターを使用する場合は、formatter
設定オプションにdefault
を値として指定してください。If you are using a Monolog handler that is capable of providing its own formatter, you may set the value of the formatter
configuration option to default
:
'newrelic' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\NewRelicHandler::class,
'formatter' => 'default',
],
ファクトリを用いたチャンネル生成Creating Channels Via Factories
Monologのインスタンス化と設定を完全にコントロールするために、完全なカスタムチャンネルを定義したい場合は、config/logging.php
設定ファイルで、custom
ドライバータイプを指定してください。Monologインスンタンスを生成するために、呼び出すファクトリクラスを指定するために、via
オプションを設定に含める必要があります。If you would like to define an entirely custom channel in which you have full control over Monolog's instantiation and configuration, you may specify a custom
driver type in your config/logging.php
configuration file. Your configuration should include a via
option to point to the factory class which will be invoked to create the Monolog instance:
'channels' => [
'custom' => [
'driver' => 'custom',
'via' => App\Logging\CreateCustomLogger::class,
],
],
custom
チャンネルを設定したら、Monologインスタンスを生成するクラスを定義する準備が整いました。このクラスはMonologインスタンスを返す、__invoke
メソッドのみ必要です。Once you have configured the custom
channel, you're ready to define the class that will create your Monolog instance. This class only needs a single method: __invoke
, which should return the Monolog instance:
<?php
namespace App\Logging;
use Monolog\Logger;
class CreateCustomLogger
{
/**
* カスタムMonologインスタンスの生成
*
* @param array $config
* @return \Monolog\Logger
*/
public function __invoke(array $config)
{
return new Logger(...);
}
}