# File lib/sshkit/formatters/pretty.rb, line 18
      def log_command_start(command)
        host_prefix = command.host.user ? "as #{colorize(command.host.user, :blue)}@" : 'on '
        message = "Running #{colorize(command, :yellow, :bold)} #{host_prefix}#{colorize(command.host, :blue)}"
        write_message(command.verbosity, message, command.uuid)
        write_message(Logger::DEBUG, "Command: #{colorize(command.to_command, :blue)}", command.uuid)
      end