-
-
Save j3ck/0a1818d9273561834510df15fed28cf9 to your computer and use it in GitHub Desktop.
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 Kek | |
class << self | |
def run | |
@logger = Logger.new('timestamp') | |
test | |
kek | |
end | |
def test | |
# ... | |
@logger.error('qwe') | |
end | |
def kek | |
# ... | |
@logger.info('kek') | |
end | |
end | |
end | |
Kek.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment