mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-devtest
synced 2026-01-15 02:22:56 +01:00
10 lines
369 B
Python
10 lines
369 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .GrepLog import GrepLog
|
|
|
|
class PostStartup(GrepLog): # export
|
|
|
|
def __init__(self, regex = None, log_glob=None, act_timeout=2, total_timeout=None):
|
|
if regex is None:
|
|
regex = 'done with post-startup start'
|
|
super().__init__(regex=regex, log_glob=log_glob, act_timeout=act_timeout, total_timeout=total_timeout)
|