# File lib/facter/core/logging.rb, line 134
  def show_time(string)
    return unless string && self.timing?

    if @@message_callback
      @@message_callback.call(:info, string)
    else
      $stderr.puts "#{GREEN}#{string}#{RESET}"
    end
  end