Searched refs:logging (Results 1 - 25 of 2456) sorted by relevance

1234567891011>>

/external/perf_data_converter/src/quipper/androidbase/base/
H A Dlogging.cc5 #include "base/logging.h"
7 namespace logging { namespace
11 } // namespace logging
/external/python/cpython3/Lib/asyncio/
H A Dlog.py3 import logging namespace
7 logger = logging.getLogger(__package__)
/external/chromium-trace/catapult/devil/devil/
H A D__init__.py5 import logging namespace
7 logging.getLogger('devil').addHandler(logging.NullHandler())
/external/autotest/client/cros/video/
H A Dmethod_logger.py5 import logging namespace
21 """ Actual method doing the logging and also invokes method_to_log
26 logging.debug('+ ' + log_str)
32 logging.debug('*** Begin arguments:')
33 logging.debug(args)
34 logging.debug('=== End arguments.')
37 logging.debug('*** Begin keyword arguments:')
38 logging.debug(kwargs)
39 logging.debug('=== End keyword arguments.')
44 logging
[all...]
/external/curl/tests/python_dependencies/impacket/
H A D__init__.py10 # Set default logging handler to avoid "No handler found" warnings.
11 import logging namespace
13 from logging import NullHandler
15 class NullHandler(logging.Handler):
24 LOG = logging.getLogger(__name__)
/external/autotest/client/cros/cellular/
H A Dcellular_logging.py6 import logging namespace
20 log = logging.getLogger(logger_name)
21 log.setLevel(logging.DEBUG)
22 ch = logging.StreamHandler(sys.stdout)
23 ch.setLevel(logging.DEBUG)
24 formatter = logging.Formatter(format_string)
/external/scapy/scapy/layers/tls/
H A D__init__.py96 import logging namespace
97 log_loading = logging.getLogger("scapy.loading")
/external/perf_data_converter/src/quipper/compat/
H A Dlog_level.cc7 #include "base/logging.h"
12 // The internal scale used by base/logging.h is inverted.
13 logging::SetMinLogLevel(-level);
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Drun_tests_helper.py7 import logging namespace
12 class CustomFormatter(logging.Formatter):
17 # Can't use super() because in older Python versions logging.Formatter does
19 logging.Formatter.__init__(self, fmt=fmt)
24 # Can't use super() because in older Python versions logging.Formatter does
26 msg = logging.Formatter.format(self, record)
35 log_level = logging.WARNING # Default.
37 log_level = logging.INFO
39 log_level = logging.DEBUG
40 logger = logging
[all...]
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dlogging_util.py6 It would be named logging, but other modules in this directory use the default
7 logging module, so that would break them.
11 import logging namespace
20 fh = logging.StreamHandler(file_stream)
22 logger = logging.getLogger()
27 fh.setFormatter(logging.Formatter(
34 logger = logging.getLogger()
H A Datexit_with_log.py6 import logging namespace
11 logging.debug('Try running %s', repr(function))
14 logging.debug('Did run %s', repr(function))
16 logging.exception('Exception running %s', repr(function))
/external/autotest/client/site_tests/desktopui_MashLogin/
H A Ddesktopui_MashLogin.py5 import logging namespace
22 logging.warning('Skipping test run on this board.')
30 logging.info('Testing Chrome --mash startup.')
32 logging.info('Chrome --mash started and loaded OOBE.')
34 logging.info('Testing Chrome --mash login.')
36 logging.info('Chrome login with --mash succeeded.')
/external/autotest/client/site_tests/desktopui_MusLogin/
H A Ddesktopui_MusLogin.py5 import logging namespace
22 logging.warning('Skipping test run on this board.')
30 logging.info('Testing Chrome --mus startup.')
33 logging.info('Chrome --mus started and loaded OOBE.')
35 logging.info('Testing Chrome --mus login.')
37 logging.info('Chrome login with --mus succeeded.')
/external/autotest/scheduler/
H A Ddrone_logging_config.py4 import logging namespace
13 """This class sets up logging for the Drone Machines.
15 Drone_utility is kicked off on each tick, so this logging config sets up
38 """Configure logging for the Drones.
42 logging handlers are disabled because drone_utility's output is parsed
47 logging (enabling and/or disabling loggers) after drone_utility has
63 for level in (logging.DEBUG, logging.INFO, logging.WARNING,
64 logging
[all...]
/external/autotest/site_utils/sponge_lib/
H A Dsponge_utils.py8 import logging namespace
16 logging.debug('Module failed to be imported: sponge')
21 class SpongeLogHandler(logging.Handler):
22 """Helper log handler for logging during sponge."""
34 def upload_results(job, log=logging.debug):
38 @param log: Logging method, default is logging.debug.
42 start_level = logging.getLogger().level
45 logging.getLogger().addHandler(log_handler)
46 logging.getLogger().setLevel(logging
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLevelTestResource.java18 package org.apache.harmony.logging.tests.java.util.logging;
H A DFilterTest.java18 package org.apache.harmony.logging.tests.java.util.logging;
20 import java.util.logging.Filter;
21 import java.util.logging.LogRecord;
/external/autotest/client/common_lib/cros/
H A Ddark_resume_xmlrpc_server.py7 import logging namespace
8 import logging.handlers namespace
46 logging.basicConfig(level=logging.DEBUG)
47 handler = logging.handlers.SysLogHandler(address = '/dev/log')
48 formatter = logging.Formatter(
51 logging.getLogger().addHandler(handler)
52 logging.debug('dark_resume_xmlrpc_server main...')
/external/autotest/client/cros/cellular/pseudomodem/
H A Dlogging_setup.py6 # This module brings together the magic to setup logging correctly for
9 import logging namespace
10 import logging.handlers namespace
16 class ModemManagerFormatter(logging.Formatter):
44 The main function that sets up logging as expected. It does the following:
46 (1) Clear out existing logging setup that leaks in during autotest import.
47 (2) Setup logging handler to log to stdout
48 (3) Setup logging handler to log to syslog.
51 root = logging.getLogger()
55 stdout_handler = logging
[all...]
/external/autotest/client/cros/
H A Ddark_resume_xmlrpc_server.py7 import logging namespace
8 import logging.handlers namespace
46 logging.basicConfig(level=logging.DEBUG)
47 handler = logging.handlers.SysLogHandler(address = '/dev/log')
48 formatter = logging.Formatter(
51 logging.getLogger().addHandler(handler)
52 logging.debug('dark_resume_xmlrpc_server main...')
/external/autotest/client/site_tests/hardware_ProbeComponents/
H A Dhardware_ProbeComponents.py11 import logging namespace
21 logging.info(probe_results)
/external/autotest/client/site_tests/platform_ToolchainTests/
H A Dplatform_ToolchainTests.py5 import logging namespace
25 logging.error(result.stdout)
26 logging.error(result.stderr)
30 logging.debug(result.stdout)
/external/autotest/client/cros/video/detectors/
H A Dkepler.py6 import logging namespace
21 logging.debug("lspci output:\n%s", lspci_result)
24 logging.exception('lspci failed.')
/external/autotest/client/site_tests/security_RootfsOwners/
H A Dsecurity_RootfsOwners.py5 import logging namespace
24 logging.error('chronos-/chronos-access-owned files:')
25 logging.error(cmd_output)
/external/autotest/server/site_tests/platform_BootDevice/
H A Dplatform_BootDevice.py5 import logging namespace
13 logging.info('======== Running BOOTDEVICE REBOOT ITERATION %d/%d '
16 logging.info('BootDevice: reboot %s', host.hostname)

Completed in 944 milliseconds

1234567891011>>