Skip to content

Commit

Permalink
Issue #28: add information on overriding config
Browse files Browse the repository at this point in the history
  • Loading branch information
herbdool authored Jul 23, 2020
1 parent 76a46e1 commit 351a378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ See "The developer's guide to Feeds": <http://drupal.org/node/622700>
Debugging
---------

Set the Backdrop config variable `feeds_debug` to TRUE (i. e. using drush). This will create a file `/tmp/feeds_[my_site_location].log`. Use `tail -f` on the command line to get a live view of debug output.
Set the Backdrop config variable `feeds_debug` to TRUE. This will create a file `/tmp/feeds_[my_site_location].log`. Use `tail -f` on the command line to get a live view of debug output. You can either set it in `feeds.settings.json` in your active configuration folder or by putting `$config['feeds.settings']['feeds_debug'] = TRUE;` into the `settings.php` file.

Note: at the moment, only PubSubHubbub related actions are logged.

Expand All @@ -87,7 +87,7 @@ See "The site builder's guide to Feeds": <http://drupal.org/node/622698>
Hidden settings
---------------

Hidden settings are variables that you can define by updating them in `feeds.settings.json` in your active configuration folder.
Hidden settings are variables that you can define by either updating them in `feeds.settings.json` in your active configuration folder or overriding them in `settings.php` file like this example: `$config['feeds.settings']['NAME'] = VALUE;`.

Name: `feeds_debug`
Default: `FALSE`
Expand Down

0 comments on commit 351a378

Please sign in to comment.