This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Logging | |
| def log(level, message) | |
| File.open("log.txt", "a") { |f| f.write "#{level}: #{message}" } | |
| end | |
| end | |
| class Service | |
| include Logging | |
| def do_something |
OlderNewer