Created a section for ActionCable client side logger

This commit is contained in:
Kartikey Tanna 2020-07-06 23:32:31 +05:30
parent c25b77fb6b
commit bc3cf14c8c
1 changed files with 11 additions and 8 deletions

View File

@ -754,6 +754,17 @@ connections as you have workers. The default worker pool size is set to 4, so
that means you have to make at least 4 database connections available.
You can change that in `config/database.yml` through the `pool` attribute.
### Client side logging
Client side logging is disabled by default. You can enable this by setting the `ActionCable.logger.enabled` to true.
```ruby
import * as ActionCable from '@rails/actioncable'
ActionCable.logger.enabled = true
```
### Other Configurations
The other common option to configure is the log tags applied to the
@ -771,14 +782,6 @@ config.action_cable.log_tags = [
For a full list of all configuration options, see the
`ActionCable::Server::Configuration` class.
Client-side logs can be enabled with the following:
```ruby
import * as ActionCable from '@rails/actioncable'
ActionCable.logger.enabled = true
```
## Running Standalone Cable Servers
### In App