README.md in timber-2.0.3 vs README.md in timber-2.0.4
- old
+ new
@@ -28,11 +28,11 @@
```
Sent 200 in 45.2ms @metadata {"dt": "2017-02-02T01:33:21.154345Z", "level": "info", "context": {"user": {"id": 1, "name": "Ben Johnson"}, "http": {"method": "GET", "host": "timber.io", "path": "/path", "request_id": "abcd1234"}}, "event": {"http_server_response": {"status": 200, "time_ms": 45.2}}}
```
-Allowing you to run queries like:
+Allowing you to run queries in the [Timber console](https://app.timber.io) like:
1. `context.request_id:abcd1234` - View all logs generated for a specific request.
2. `context.user.id:1` - View logs generated by a specific user.
3. `type:http_response` - View specific events (exceptions, sql queries, etc)
4. `http_server_response.time_ms:>=1000` - View slow responses with the ability to zoom out and view them in context (request, user, etc).
@@ -48,9 +48,23 @@
```
2. In your `shell`, run `bundle install`
3. In your `shell`, run `bundle exec timber install`
+
+
+## Configuration
+
+All configuration options can be seen in the
+[`Timber::Config docs`](http://www.rubydoc.info/github/timberio/timber-ruby/Timber/Config).
+
+Here's a few popular options:
+
+1. `config.timber.format =`
+ * `:default` - This is the default. It's the original, default, unchanged log messages.
+ * `:lograge` - Works exactly like [lograge](https://github.com/roidrage/lograge), except Timber's
+ additional context and metadata is also appended. Lograge++.
+
## Usage
<details><summary><strong>Basic logging</strong></summary><p>
\ No newline at end of file