ebcli/operations/logsops.py [578:594]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        sleep_time=10,
        log_group=None,
        specific_log_stream=None
):
    """
    Method streams CloudWatch logs to the terminal for the logGroup given. Since it
    is possible that the logGroup might match multiple logGroups, multiple threads
    can be spawned to switch between streams to display all of them on the same terminal.

    :param sleep_time: sleep time to refresh the logs from cloudwatch
    :param log_group: cloudwatch logGroup
    :param specific_log_stream: since all of our log streams are instance ids we require
                                this if we want a single stream
    """
    streamer = io.get_event_streamer()
    streamer.prompt = ' -- {0} -- (Ctrl+C to exit)'.format(log_group)
    start_time = None
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ebcli/operations/logsops.py [613:631]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        sleep_time=10,
        log_group=None,
        specific_log_stream=None
):
    """
    Method streams CloudWatch logs to the terminal for the logGroup given.
    Since it is possible that the logGroup might match multiple logGroups,
    multiple threads can be spawned to switch between streams to display
    all of them on the same terminal.

    :param sleep_time: sleep time to refresh the logs from cloudwatch
    :param log_group: cloudwatch logGroup
    :param specific_log_stream: since all of our log streams are instance ids
                                we require this if we want a single stream
    """
    streamer = io.get_event_streamer()
    streamer.prompt = ' -- {0} -- (Ctrl+C to exit)'.format(log_group)

    start_time = None
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



