FOSElasticaBundle/Resources/doc/cookbook/logging.md

36 lines
1.1 KiB
Markdown
Raw Normal View History

2014-03-26 00:07:50 +01:00
Logging and its performance considerations
==========================================
By default, FOSElasticaBundle sets a logger against each Elastica client configured and
logs all information sent to and received from Elasticsearch. This can lead to large
memory usage during population or reindexing of an index.
By default FOSElasticaBundle will only enable a logger when debug mode is enabled, meaning
in a production environment there wont be a logger enabled. To enable a logger anyway, you
can set the logger property of a client configuration to true or a service id of a logging
service you wish to use.
2014-03-26 00:07:50 +01:00
```yaml
# app/config/config.yml
fos_elastica:
clients:
default:
host: example.com
logger: true
2014-03-26 00:07:50 +01:00
```
Custom Logger Service
---------------------
It is also possible to specify a custom logger instance to be injected into each client by
specifying the service id of the logger you wish to use.
```yaml
# app/config/config.yml
fos_elastica:
clients:
default:
host: example.com
logger: 'acme.custom.logger'
```