README.md in timber-1.1.13 vs README.md in timber-1.1.14
- old
+ new
@@ -97,18 +97,18 @@
</p></details>
<details><summary><strong>Or, all other platforms (Network / HTTP)</strong></summary><p>
-1. *Specify* the Timber Network logger backend in `config/environments/production.rb`:
+1. *Specify* the Timber HTTP logger backend in `config/environments/production.rb`:
Replace any existing `config.logger =` calls with:
```ruby
# config/environments/production.rb (or staging, etc)
- network_log_device = Timber::LogDevices::Network.new(ENV['TIMBER_LOGS_KEY'])
- config.logger = ActiveSupport::TaggedLogging.new(Timber::Logger.new(network_log_device))
+ http_log_device = Timber::LogDevices::HTTP.new(ENV['TIMBER_LOGS_KEY'])
+ config.logger = ActiveSupport::TaggedLogging.new(Timber::Logger.new(http_log_device))
```
2. Obtain your Timber API :key: by **[adding your app in Timber](https://app.timber.io)**.
3. Assign your API key to the `TIMBER_LOGS_KEY` environment variable.
\ No newline at end of file