HomeSort by relevance Sort by last modified time
    Searched refs:logging (Results 1 - 25 of 3267) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/perf_data_converter/src/quipper/androidbase/base/
logging.cc 5 #include "base/logging.h"
7 namespace logging { namespace
11 } // namespace logging
  /external/chromium-trace/catapult/devil/devil/
__init__.py 5 import logging
7 logging.getLogger('devil').addHandler(logging.NullHandler())
  /external/python/cpython3/Lib/asyncio/
log.py 0 """Logging configuration."""
3 import logging
7 logger = logging.getLogger(__package__)
  /external/autotest/client/cros/video/
method_logger.py 5 import logging
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.debug('### Begin results :'
    [all...]
  /external/autotest/client/cros/cellular/
cellular_logging.py 6 import logging
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/curl/tests/python_dependencies/impacket/
__init__.py 10 # Set default logging handler to avoid "No handler found" warnings.
11 import logging
13 from logging import NullHandler
15 class NullHandler(logging.Handler):
24 LOG = logging.getLogger(__name__)
  /external/perf_data_converter/src/quipper/compat/
log_level.cc 7 #include "base/logging.h"
12 // The internal scale used by base/logging.h is inverted.
13 logging::SetMinLogLevel(-level);
  /external/python/google-api-python-client/googleapiclient/
__init__.py 17 # Set default logging handler to avoid "No handler found" warnings.
18 import logging
21 from logging import NullHandler
23 class NullHandler(logging.Handler):
27 logging.getLogger(__name__).addHandler(NullHandler())
  /external/tensorflow/tensorflow/core/kernels/
logging_ops.h 24 namespace logging { namespace in namespace:tensorflow
30 } // namespace logging
  /external/autotest/site_utils/sponge_lib/
sponge_utils.py 8 import logging
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.DEBUG
    [all...]
  /development/gsi/gsi_util/gsi_util/utils/
image_utils.py 16 import logging
22 logging.debug('Unsparsing %s...', input_filename)
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTestResource.java 18 package org.apache.harmony.logging.tests.java.util.logging;
FilterTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
20 import java.util.logging.Filter;
21 import java.util.logging.LogRecord;
  /external/scapy/scapy/layers/tls/
__init__.py 96 import logging
97 log_loading = logging.getLogger("scapy.loading")
  /external/chromium-trace/catapult/common/py_utils/py_utils/
atexit_with_log.py 6 import logging
11 logging.debug('Try running %s', repr(function))
14 logging.debug('Did run %s', repr(function))
16 logging.exception('Exception running %s', repr(function))
logging_util.py 4 """Logging util functions.
6 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
20 fh = logging.StreamHandler(file_stream)
22 logger = logging.getLogger()
27 fh.setFormatter(logging.Formatter(
34 logger = logging.getLogger()
  /external/libtextclassifier/utils/base/
logging_levels.h 21 namespace logging { namespace in namespace:libtextclassifier3
30 } // namespace logging
  /external/autotest/client/cros/video/detectors/
kepler.py 6 import logging
21 logging.debug("lspci output:\n%s", lspci_result)
24 logging.exception('lspci failed.')
intel_cpu.py 6 import logging
42 logging.debug('Parse CPU type: %s', cpu_str)
48 logging.exception('lscpu failed.')
51 logging.debug('The result of lscpu.')
53 logging.debug(cpu_info)
  /external/autotest/server/site_tests/platform_BootDevice/
platform_BootDevice.py 5 import logging
13 logging.info('======== Running BOOTDEVICE REBOOT ITERATION %d/%d '
16 logging.info('BootDevice: reboot %s', host.hostname)
  /external/markdown/bin/
markdown 32 import logging
37 logger = logging.getLogger('MARKDOWN')
39 logger.addHandler(logging.StreamHandler())
  /external/autotest/client/site_tests/hardware_GobiGPS/
hardware_GobiGPS.py 16 import logging, re
37 logging.debug(nmea)
63 logging.debug('Got fix:')
64 logging.debug('Time = %s', match.group(1))
65 logging.debug('Status = %s', match.group(2))
66 logging.debug('Latitude = %s %s', match.group(3),
68 logging.debug('Longitude = %s %s', match.group(5),
70 logging.debug('Speed = %s', match.group(7))
71 logging.debug('Track Angle = %s', match.group(8))
72 logging.debug('Date = %s', match.group(9)
    [all...]
  /external/clang/tools/scan-build-py/libscanbuild/
__init__.py 45 import logging
46 level = logging.WARNING - min(logging.WARNING, (10 * verbose_level))
54 logging.basicConfig(format=fmt_string.format(program), level=level)
61 import logging
70 logging.warning('Keyboard interupt')
72 logging.exception('Internal error.')
73 if logging.getLogger().isEnabledFor(logging.DEBUG):
74 logging.error("Please report this bug and attach the output
    [all...]
  /external/autotest/site_utils/
log_socket_server_unittest.py 5 import logging
6 import logging.handlers
28 logging.getLogger().handlers = []
29 socketHandler = logging.handlers.SocketHandler('localhost', port)
30 logging.getLogger().addHandler(socketHandler)
31 logging.getLogger().level = logging.INFO
32 logging.info(value)
41 level=logging.INFO)
62 logging.warn('Not all log messages were written to file %s.
    [all...]
  /external/autotest/client/cros/chameleon/
mirror_comparison.py 7 import logging
48 logging.error(message)
51 logging.info('Checking the resolutions of all screens identical...')
58 logging.info('Sofware-based mirroring, skip the screen comparison. '
63 logging.info('Resolutions across all CrOS screens match: %dx%d',
66 logging.info('Checking all the screens mirrored...')

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 91011>>