| /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/mesa3d/src/egl/main/ |
| egllog.c | 32 * Logging facility for debug/info messages. 58 } logging = { variable in typeref:struct:__anon29369 79 * Recursive logging is not allowed. 86 mtx_lock(&logging.mutex); 88 if (logging.logger != logger) { 89 logging.logger = logger; 91 num_messages = logging.num_messages; 92 logging.num_messages = 0; 95 mtx_unlock(&logging.mutex); 115 mtx_lock(&logging.mutex) [all...] |
| /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/chromium-trace/catapult/common/py_utils/py_utils/ |
| 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/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...] |
| /tools/test/connectivity/acts/framework/acts/libs/ota/ota_tools/ |
| adb_sideload_ota_tool.py | 17 import logging 35 logging.info('Rooting adb') 37 logging.info('Rebooting to sideload') 40 logging.info('Sideloading ota package') 42 logging.info('Running adb sideload with package "%s"' % package_path) 45 logging.info('Sideload complete. Waiting for device to come back up.') 48 logging.info('Device is up. Update complete.')
|
| /tools/test/connectivity/tools/lab/reporters/ |
| logger_reporter.py | 17 import logging 31 logger = logging.getLogger(__name__) 32 logger.setLevel(logging.INFO) 36 handler = logging.FileHandler('lab_health.log') 37 handler.setLevel(logging.INFO) 39 formatter = logging.Formatter( 44 logger = logging.LoggerAdapter(logger, extra)
|
| /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...] |
| /frameworks/rs/tests/lldb/tests/harness/ |
| util_log.py | 15 '''Initialise the Python logging facility for the test suite. 19 It provides the function to initialise the logging facility and retrieve an 27 import logging 33 def initialise(identifier, level=logging.INFO, print_to_stdout=False, 35 '''Initialise the logging facility for the test suite. 44 Valid values are those recognised by the python logging module: 45 https://docs.python.org/2/library/logging.html#levels . 55 RuntimeError: If the logging has already been initialised 64 # set the logging class 65 old_logger_class = logging.getLoggerClass( [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...')
|
| /external/autotest/scheduler/ |
| drone_logging_config.py | 4 import logging 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.ERROR, logging.CRITICAL) [all...] |
| /tools/test/connectivity/acts/framework/acts/libs/proto/ |
| proto_utils.py | 14 import logging 32 logging.error( 36 logging.error(" prebuilts/tools/linux-x86_64/protoc/bin/protoc") 37 logging.error("If prebuilts are not available, use apt-get:") 38 logging.error(" sudo apt-get install protobuf-compiler") 42 logging.error('Can\'t find required file: %s\n' % proto_path) 48 logging.error("Output path is not a valid directory: %s" % 55 logging.info('Generating %s' % output_path) 61 logging.error("Fail to compile proto") 83 logging.error("Cannot import generated py-proto %s" [all...] |
| /external/autotest/client/site_tests/security_RootfsOwners/ |
| security_RootfsOwners.py | 5 import logging 24 logging.error('chronos-/chronos-access-owned files:') 25 logging.error(cmd_output)
|
| /external/deqp/scripts/opengl/ |
| gen_versions.py | 36 import logging, sys 37 logging.basicConfig(stream=sys.stderr, level=logging.INFO)
|
| /frameworks/base/core/java/com/android/internal/logging/ |
| AndroidConfig.java | 17 package com.android.internal.logging; 19 import java.util.logging.Level; 20 import java.util.logging.Logger; 23 * Implements the java.util.logging configuration for Android. Activates a log 29 * This looks a bit weird, but it's the way the logging config works: A 41 // Turn down logging in Apache libraries.
|
| /system/bt/service/test/ |
| main.cc | 19 #include <base/logging.h> 26 logging::LoggingSettings log_settings; 27 logging::InitLogging(log_settings);
|
| /system/tpm/attestation/ |
| attestation_testrunner.cc | 19 #include <base/logging.h> 26 // Enable verbose logging while running unit tests. 27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
|
| /system/tpm/tpm_manager/ |
| tpm_manager_testrunner.cc | 19 #include <base/logging.h> 26 // Enable verbose logging while running unit tests. 27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
|
| /system/tpm/trunks/ |
| trunks_testrunner.cc | 19 #include <base/logging.h> 26 // Enable verbose logging while running unit tests. 27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
|
| /external/apache-harmony/logging/src/test/java-internal/java/util/logging/ |
| LoggerExtension.java | 18 package java.util.logging; 23 * Example of a type injected into logging to access package private members.
|
| /external/autotest/client/site_tests/platform_ToolchainTests/ |
| platform_ToolchainTests.py | 5 import logging 25 logging.error(result.stdout) 26 logging.error(result.stderr) 30 logging.debug(result.stdout)
|
| /external/autotest/server/site_tests/platform_InstallRecoveryImage/ |
| platform_InstallRecoveryImage.py | 5 import logging 20 logging.info('Running the recovery process on the DUT. ' 26 logging.info('Recovery process completed successfully in ' 31 logging.info('Removing the usb key from the DUT.')
|