# File lib/hammer_cli_import/importtools.rb, line 284
      def log(lvl, s, always = false)
        @logger.log(lvl, s)
        return if option_quiet?

        if always
          puts s
        elsif option_verbose?
          puts s if lvl >= @curr_lvl
        else
          puts s if lvl > @curr_lvl
        end
      end