logging.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. ],
  62. 'payment' => [
  63. 'driver' => 'daily',
  64. 'path' => storage_path('logs/payment/payment.log'),
  65. 'level' => env('LOG_LEVEL', 'debug'),
  66. 'days' => 30,
  67. 'permission' => 0664,
  68. ],
  69. 'payment_error' => [
  70. 'driver' => 'daily',
  71. 'path' => storage_path('logs/payment/error.log'),
  72. 'level' => 'error',
  73. 'days' => 90,
  74. ],
  75. 'slack' => [
  76. 'driver' => 'slack',
  77. 'url' => env('LOG_SLACK_WEBHOOK_URL'),
  78. 'username' => 'Laravel Log',
  79. 'emoji' => ':boom:',
  80. 'level' => env('LOG_LEVEL', 'critical'),
  81. ],
  82. 'papertrail' => [
  83. 'driver' => 'monolog',
  84. 'level' => env('LOG_LEVEL', 'debug'),
  85. 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
  86. 'handler_with' => [
  87. 'host' => env('PAPERTRAIL_URL'),
  88. 'port' => env('PAPERTRAIL_PORT'),
  89. 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
  90. ],
  91. ],
  92. 'stderr' => [
  93. 'driver' => 'monolog',
  94. 'level' => env('LOG_LEVEL', 'debug'),
  95. 'handler' => StreamHandler::class,
  96. 'formatter' => env('LOG_STDERR_FORMATTER'),
  97. 'with' => [
  98. 'stream' => 'php://stderr',
  99. ],
  100. ],
  101. 'syslog' => [
  102. 'driver' => 'syslog',
  103. 'level' => env('LOG_LEVEL', 'debug'),
  104. ],
  105. 'errorlog' => [
  106. 'driver' => 'errorlog',
  107. 'level' => env('LOG_LEVEL', 'debug'),
  108. ],
  109. 'null' => [
  110. 'driver' => 'monolog',
  111. 'handler' => NullHandler::class,
  112. ],
  113. 'emergency' => [
  114. 'path' => storage_path('logs/laravel.log'),
  115. ],
  116. 'wallet' => [
  117. 'driver' => 'single',
  118. 'path' => storage_path('logs/wallet.log'),
  119. 'level' => 'info',
  120. ],
  121. 'dblog' => [
  122. 'driver' => 'single',
  123. 'path' => storage_path('logs/dblog.log'),
  124. 'level' => 'info',
  125. 'days' => 30,
  126. ],
  127. ],
  128. ];