# File lib/yard/logging.rb, line 24
    def show_progress
      return false if RUBY18 # threading is too ineffective for progress support
      return false unless io.tty? # no TTY support on IO
      return false if level > WARN # no progress in verbose/debug modes
      @show_progress
    end