We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.0.4 ダウンロード版のでログレベルは、DEBUG に設定されているから、毎日の site-YYYY-MM-DD.log ファイルがアイドル状態のサーバーでも非常に大きくなってしまっています。
あまり忙しくないサーバーでも毎日100MB以上になっています。
「システム設定」の「ログ表示」でも表示できないほど(PHPの規定最大メモリ設定のために処理を完了しないでエラー)。
DEBUGよりERRORレベルまたはWARNINGレベルに設定すれば良いです。
app/config/eccube/packages/prod/monolog.yml
handlers: main: type: fingers_crossed action_level: error passthru_level: info handler: main_rotating_file main_rotating_file: type: rotating_file max_files: 60 path: '%kernel.logs_dir%/%kernel.environment%/site.log' formatter: eccube.log.formatter.line level: debug front: type: fingers_crossed action_level: error passthru_level: info handler: front_rotating_file channels: ['front', 'app', 'php'] front_rotating_file: type: rotating_file max_files: 60 path: '%kernel.logs_dir%/%kernel.environment%/front.log' formatter: eccube.log.formatter.line level: debug admin: type: fingers_crossed action_level: error passthru_level: info handler: admin_rotating_file channels: ['admin', 'app', 'php'] admin_rotating_file: type: rotating_file max_files: 60 path: '%kernel.logs_dir%/%kernel.environment%/admin.log' formatter: eccube.log.formatter.line level: debug console: type: console process_psr_3_messages: false channels: ['!event', '!doctrine']```
The text was updated successfully, but these errors were encountered:
@havill こんにちは、本件、下記にてプルリクエストの承認をいただきました。 問題なさそうであればissue クローズの程よろしくおねがいします。 #5322
Sorry, something went wrong.
No branches or pull requests
概要(Overview)
4.0.4 ダウンロード版のでログレベルは、DEBUG に設定されているから、毎日の site-YYYY-MM-DD.log ファイルがアイドル状態のサーバーでも非常に大きくなってしまっています。
あまり忙しくないサーバーでも毎日100MB以上になっています。
「システム設定」の「ログ表示」でも表示できないほど(PHPの規定最大メモリ設定のために処理を完了しないでエラー)。
期待する内容(Expect) or 要望 (Requirement)
DEBUGよりERRORレベルまたはWARNINGレベルに設定すれば良いです。
再現手順(Procedure)
環境 (environment)
関連情報 (Ref)
app/config/eccube/packages/prod/monolog.yml
The text was updated successfully, but these errors were encountered: