Skip to content

Commit

Permalink
Merge pull request #1 from balauru/patch-1
Browse files Browse the repository at this point in the history
Replaced &lt; with <
  • Loading branch information
robhurring committed Jun 16, 2015
2 parents ba1cd38 + 1bc61cf commit 74de223
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -64,7 +64,7 @@ Example Usage

```ruby
# simple use case to override active records logger
class Transaction &lt; ActiveRecord::Base
class Transaction < ActiveRecord::Base
include ClassLogger
has_logger

Expand All @@ -76,7 +76,7 @@ Example Usage

# custom logs for special models within rails
# specifying a custom logfile and logger name
class Transaction &lt; ActiveRecord::Base
class Transaction < ActiveRecord::Base
include ClassLogger
has_logger :file => 'gateway.log', :as => :gateway_logger

Expand All @@ -87,7 +87,7 @@ Example Usage
end

# overriding active record's default logger with a custom logfile
class Transaction &lt; ActiveRecord::Base
class Transaction < ActiveRecord::Base
include ClassLogger
has_logger :file => 'gateway.log'

Expand Down Expand Up @@ -117,4 +117,4 @@ Example Usage
end
Something.new
Something.loggers[:logger].debug "System logger" # alter entry point to logger
```
```

0 comments on commit 74de223

Please sign in to comment.