Skip to content

Instantly share code, notes, and snippets.

@lloesche
Last active May 9, 2018 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lloesche/5fe0892b407df7a753bc2d8ffc5f59e1 to your computer and use it in GitHub Desktop.
Save lloesche/5fe0892b407df7a753bc2d8ffc5f59e1 to your computer and use it in GitHub Desktop.
Just a test
#!/usr/bin/env ruby
require 'logger'
STDOUT.sync = true
log = Logger.new(STDOUT)
log.level = Logger::DEBUG
loop do
log.info "Hello World"
puts "Hello puts"
STDERR.puts "Hello stderr"
sleep 30
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment