We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1838803 commit acdf887Copy full SHA for acdf887
docs/cookbook.md
@@ -32,7 +32,7 @@ You can modify the `dict` of data that will be logged by overriding the `process
32
33
```python
34
class SillyFormatter(JsonFormatter):
35
- def process_log_record(log_data):
+ def process_log_record(self, log_data):
36
new_record = {k[::-1]: v for k, v in log_data.items()}
37
return new_record
38
```
0 commit comments