mirror of
https://github.com/thewesker/twitter_ebooks.git
synced 2025-12-23 13:51:09 -05:00
Use STDOUT, please.
It exists for a reason! Otherwise we can't distinguish errors (like from unhandled exceptions).
This commit is contained in:
@@ -30,8 +30,8 @@ module Ebooks
|
|||||||
end
|
end
|
||||||
|
|
||||||
def log(*args)
|
def log(*args)
|
||||||
STDERR.puts "@#{@username}: " + args.map(&:to_s).join(' ')
|
STDOUT.puts "@#{@username}: " + args.map(&:to_s).join(' ')
|
||||||
STDERR.flush
|
STDOUT.flush
|
||||||
end
|
end
|
||||||
|
|
||||||
def configure
|
def configure
|
||||||
|
|||||||
Reference in New Issue
Block a user