README.md in failsafe-0.1.0 vs README.md in failsafe-0.2.0

- old
+ new

@@ -56,9 +56,15 @@ by failsafe, the exception object is handed to each error backend. Failsafe ships with three error backends by default: * Airbrake - Send errors to airbrake +* Exceptional - Send errors to exceptional * Stderr - Send errors to stderr * File - Send errors to a log file -Note: The File backend logs to a log file in the log directory called failsafe_errors.log. \ No newline at end of file +Note: The File backend by default logs to a log file in the log directory called +failsafe_errors.log. It can be optionally configured with a different path: + +```ruby +Failsafe::Backends::File.log_file_path = "/path/to/errors.log" +```