blob: 48f2b61cc54f65b22dc358715d3867d271cdfea8 [file] [log] [blame]
koder aka kdanilov39e449e2016-12-17 15:15:26 +02001from typing import Any
2
3
4log = []
5
6
7def log_op(name: str, *params: Any) -> None:
8 log.append([name] + list(params))
9