Skip to content

Commit

Permalink
add info about logger
Browse files Browse the repository at this point in the history
  • Loading branch information
shime committed Aug 5, 2012
1 parent 4ed653b commit ed3fcda
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -435,6 +435,17 @@ The notifier supports using a proxy, if your server is not able to directly reac
config.proxy_port = 4038
config.proxy_user = foo # optional
config.proxy_pass = bar # optional
Logging
------------

Airbrake uses the logger from your Rails application by default, presumably STDOUT. If you don't like Airbrake scribbling to your
standard output, just pass another `Logger` instance inside your configuration:

Airbrake.configure do |config|
...
config.logger = Logger.new("path/to/your/log/file")
end

Supported Rails versions
------------------------
Expand Down

0 comments on commit ed3fcda

Please sign in to comment.