lib/log.rb in forj-1.0.0 vs lib/log.rb in forj-1.0.1
- old
+ new
@@ -154,9 +154,9 @@
print("%s ...%s\r" % [message, ANSI.clear_line]) if $FORJ_LOGGER.level <= Logger::INFO
end
def high_level_msg(message)
# Not DEBUG and not INFO. Just printed to the output.
- puts ("%s" % [message]) if $FORJ_LOGGER.level > 1
+ print ("%s" % [message]) if $FORJ_LOGGER.level > 1
end
end