mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
15 lines
374 B
Python
15 lines
374 B
Python
|
import time
|
||
|
import threading
|
||
|
|
||
|
|
||
|
class BaseThread(threading.Thread):
|
||
|
def __init__(self, name, *args, **kwargs):
|
||
|
super(BaseThread, self).__init__(name=name, *args, **kwargs)
|
||
|
self._thread_started = time.time()
|
||
|
|
||
|
def _threadinfo(self):
|
||
|
return "%s - age: %is" % (
|
||
|
self.name,
|
||
|
int(time.time() - self._thread_started)
|
||
|
)
|