summaryrefslogtreecommitdiff
path: root/speed-test
blob: 50e6c7839c28c070f1cd020db5b908210339aa6f (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh


set -eu


python -O -m timeit -n 1000000 \
    -s 'import debuglog' \
    -s 'x = debuglog.DebugLog()' \
    'x.log(msg="foobar", url="yoyoyo")'