# File lib/bee_console.rb, line 546
      def build_started(build, dry_run)
        @start_time = Time.now
        @end_time = nil
        @duration = nil
        @success = nil
        @last_target = nil
        @last_task = nil
        build_type = dry_run ? "dry run of" : "build"
        puts "Starting #{build_type} '#{build.file}'..." if @verbose
      end