logging.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. use Monolog\Handler\NullHandler;
  3. use Monolog\Handler\StreamHandler;
  4. use Monolog\Handler\SyslogUdpHandler;
  5. return [
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Default Log Channel
  9. |--------------------------------------------------------------------------
  10. |
  11. | This option defines the default log channel that gets used when writing
  12. | messages to the logs. The name specified in this option should match
  13. | one of the channels defined in the "channels" configuration array.
  14. |
  15. */
  16. 'default' => env('LOG_CHANNEL', 'stack'),
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Deprecations Log Channel
  20. |--------------------------------------------------------------------------
  21. |
  22. | This option controls the log channel that should be used to log warnings
  23. | regarding deprecated PHP and library features. This allows you to get
  24. | your application ready for upcoming major versions of dependencies.
  25. |
  26. */
  27. 'deprecations' => [
  28. 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
  29. 'trace' => false,
  30. ],
  31. /*
  32. |--------------------------------------------------------------------------
  33. | Log Channels
  34. |--------------------------------------------------------------------------
  35. |
  36. | Here you may configure the log channels for your application. Out of
  37. | the box, Laravel uses the Monolog PHP logging library. This gives
  38. | you a variety of powerful log handlers / formatters to utilize.
  39. |
  40. | Available Drivers: "single", "daily", "slack", "syslog",
  41. | "errorlog", "monolog",
  42. | "custom", "stack"
  43. |
  44. */
  45. 'channels' => [
  46. 'stack' => [
  47. 'driver' => 'stack',
  48. 'channels' => ['single'],
  49. 'ignore_exceptions' => false,
  50. ],
  51. 'single' => [
  52. 'driver' => 'single',
  53. 'path' => storage_path('logs/laravel.log'),
  54. 'level' => env('LOG_LEVEL', 'debug'),
  55. ],
  56. 'daily' => [
  57. 'driver' => 'daily',
  58. 'path' => storage_path('logs/laravel.log'),
  59. 'level' => env('LOG_LEVEL', 'debug'),
  60. 'days' => 14,
  61. 'permission' => '0755',
  62. ],
  63. 'slack' => [
  64. 'driver' => 'slack',
  65. 'url' => env('LOG_SLACK_WEBHOOK_URL'),
  66. 'username' => 'Laravel Log',
  67. 'emoji' => ':boom:',
  68. 'level' => env('LOG_LEVEL', 'critical'),
  69. ],
  70. 'papertrail' => [
  71. 'driver' => 'monolog',
  72. 'level' => env('LOG_LEVEL', 'debug'),
  73. 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
  74. 'handler_with' => [
  75. 'host' => env('PAPERTRAIL_URL'),
  76. 'port' => env('PAPERTRAIL_PORT'),
  77. 'connectionString' => 'tls://' . env('PAPERTRAIL_URL') . ':' . env('PAPERTRAIL_PORT'),
  78. ],
  79. ],
  80. 'stderr' => [
  81. 'driver' => 'monolog',
  82. 'level' => env('LOG_LEVEL', 'debug'),
  83. 'handler' => StreamHandler::class,
  84. 'formatter' => env('LOG_STDERR_FORMATTER'),
  85. 'with' => [
  86. 'stream' => 'php://stderr',
  87. ],
  88. ],
  89. 'syslog' => [
  90. 'driver' => 'syslog',
  91. 'level' => env('LOG_LEVEL', 'debug'),
  92. ],
  93. 'errorlog' => [
  94. 'driver' => 'errorlog',
  95. 'level' => env('LOG_LEVEL', 'debug'),
  96. ],
  97. 'null' => [
  98. 'driver' => 'monolog',
  99. 'handler' => NullHandler::class,
  100. ],
  101. 'emergency' => [
  102. 'path' => storage_path('logs/laravel.log'),
  103. ],
  104. ],
  105. ];