Path 1: 342 calls (1.0)

True (341) False (1)

False (337) True (5)

True (339) False (3)

'[%X]' (334) '[%x %X]' (5) 'TIME' (1) test_log_milliseconds..time_formatter def (1) '[TIME]' (1)

True (342)

8 (337) None (5)

1def __init__(
2        self,
3        show_time: bool = True,
4        show_level: bool = False,
5        show_path: bool = True,
6        time_format: Union[str, FormatTimeCallable] = "[%x %X]",
7        omit_repeated_times: bool = True,
8        level_width: Optional[int] = 8,
9    ) -> None:
10        self.show_time = show_time
11        self.show_level = show_level
12        self.show_path = show_path
13        self.time_format = time_format
14        self.omit_repeated_times = omit_repeated_times
15        self.level_width = level_width
16        self._last_time: Optional[Text] = None