Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logging.php 4.1KB

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