From fb60b0dd600bad962aa8163d9dabb6daade7e066 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Tue, 3 Jul 2018 07:03:09 +0300 Subject: wscli: timestamps --- kvmd/kvmd/extras/wscli/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kvmd/kvmd/extras/wscli/__init__.py b/kvmd/kvmd/extras/wscli/__init__.py index 3812871d..aa2d2e63 100644 --- a/kvmd/kvmd/extras/wscli/__init__.py +++ b/kvmd/kvmd/extras/wscli/__init__.py @@ -5,6 +5,7 @@ import sys import signal import asyncio import argparse +import time import aiohttp @@ -24,12 +25,12 @@ async def _run_client(loop: asyncio.AbstractEventLoop, url: str) -> None: while True: msg = await ws.receive() if msg.type == aiohttp.WSMsgType.TEXT: - print("Received:", msg.data.strip()) + print("[%.5f] Received: %s" % (time.time(), msg.data.strip())) else: if msg.type == aiohttp.WSMsgType.CLOSE: await ws.close() elif msg.type == aiohttp.WSMsgType.ERROR: - print("Error during receive:", ws.exception()) + print("[%.5f] Error during receive: %s" % (time.time(), ws.exception())) elif msg.type == aiohttp.WSMsgType.CLOSED: pass break -- cgit v1.2.3