Home
last modified time | relevance | path

Searched refs:log_stream (Results 1 – 7 of 7) sorted by relevance

/tools/test/connectivity/acts/framework/tests/libs/logging/
Dlog_stream_test.py23 from acts.libs.logging import log_stream
24 from acts.libs.logging.log_stream import AlsoToLogHandler
25 from acts.libs.logging.log_stream import InvalidStyleSetError
26 from acts.libs.logging.log_stream import LogStyles
27 from acts.libs.logging.log_stream import _LogStream
56 log_stream._log_streams = dict()
68 log = log_stream.create_logger(self._testMethodName,
84 log_stream.create_logger(
101 log_stream.create_logger(
110 log_stream.create_logger(
[all …]
/tools/test/connectivity/acts/framework/acts/libs/logging/
Dlog_stream.py97 for log_stream in _log_streams.values():
98 log_stream.update_handlers(event)
133 log_stream = _LogStream(name, log_name, base_path, subcontext, log_styles,
135 _set_logger(log_stream)
136 return log_stream.logger
139 def _set_logger(log_stream): argument
140 _log_streams[log_stream.name] = log_stream
141 return log_stream
/tools/test/connectivity/acts/framework/acts/controllers/android_lib/
Dlogcat.py21 from acts.libs.logging import log_stream
22 from acts.libs.logging.log_stream import LogStyles
93 logger = log_stream.create_logger(
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dsyslog_lib.py22 from acts.libs.logging import log_stream
23 from acts.libs.logging.log_stream import LogStyles
66 logger = log_stream.create_logger('fuchsia_log_%s' % serial,
/tools/test/connectivity/acts/framework/tests/controllers/android_lib/
Dlogcat_test.py148 with self.patch('log_stream') as log_stream, self.patch('Process'):
150 self.assertEqual(log_stream.create_logger.call_args[0][0],
152 self.assertEqual(log_stream.create_logger.call_args[1]['subcontext'],
/tools/test/connectivity/acts/framework/acts/
Dlogger.py27 from acts.libs.logging import log_stream
28 from acts.libs.logging.log_stream import LogStyles
214 log = log_stream.create_logger('test_run',
/tools/test/connectivity/acts/framework/acts/controllers/
Dpacket_capture.py27 from acts.libs.logging import log_stream