tarnawski / log-viewer
1.0.6
2016-08-11 20:52 UTC
Requires
- php: >=5.4
- symfony/framework-bundle: ~2.3|~3.0
- symfony/twig-bundle: ~2.3|~3.0
Requires (Dev)
- coduo/php-matcher: 2.0.1
- pdepend/pdepend: 2.2.4
- phpmd/phpmd: @stable
- phpspec/phpspec: ~2.0
- phpunit/phpunit: ~4.3
- sebastian/phpcpd: ^2.0
- squizlabs/php_codesniffer: ~2.0
This package is auto-updated.
Last update: 2024-10-15 00:31:14 UTC
README
A viewer to nicely display log files generated by Monolog.
1.Download
Open a command console, enter your project directory and execute the following command:
$ composer require tarnawski/log-viewer
2.Enable the Bundle
Enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project.
<?php
$bundles = array(
new LogViewerBundle\LogViewerBundle(),
);
3.Register the Routes:
LogViewerBundle:
resource: "@LogViewerBundle/Resources/config/routing.yml"
prefix: /logs
4.Configure the Bundle:
log_viewer:
logs:
dev:
path: /var/logs/dev.log
method: json
test:
path: /dev/shm/api-backend/logs/test.log
method: string
max_tail: 500
You can browse the whole logs at: http://your-app/logs/{name}