README.md in effective_logging-2.1.2 vs README.md in effective_logging-3.0.0

- old
+ new

@@ -231,12 +231,10 @@ class Post < ActiveRecord::Base log_changes include_associated: false end ``` -There is some initial support for passing `only`, `except`, and `additionally` to the mixin to customize what attributes are saved. - -Define your model with `log_changes additionally: [:method1, :method2]` to also _always_ log the value of that method. Even if it's unchanged. +There is some initial support for passing `only`, and `except`, to the mixin to customize what attributes are saved. Apply your own formatting to the logged title of each attribute by creating an instance method on the resource: ```ruby # Format the title of this attribute. Return nil to use the default attribute.titleize