lib/rbfs/logger.rb in rbfs-0.0.7 vs lib/rbfs/logger.rb in rbfs-0.0.8
- old
+ new
@@ -9,10 +9,10 @@
def info(msg)
puts "\033[0;32m#{msg}\033[00m"
end
def puts(msg)
- puts "#{msg}"
+ $stdout.puts "#{msg}"
end
def error(msg)
puts "\033[0;31m#{msg}\033[00m"
end