| /external/autotest/client/cros/ |
| mainloop.py | 5 import gobject, logging, sys, traceback 24 logging.warning('Saving exception: %s' % e) 25 logging.warning(''.join(traceback.format_exception(*sys.exc_info()))) 44 logging.warning('ExceptionForwardingMainLoop: No timeout specified.') 45 logging.warning('(Specify timeout_s=0 explicitly for no timeout.)') 112 logging.warning('requirement %s was not present to be completed', 118 logging.info('All requirements satisfied') 122 logging.info('Requirement %s satisfied. Remaining: %s' % 126 logging.error('Requirements unsatisfied upon timeout: %s' % 133 logging.info('Property_changed dispatching %s' % property [all...] |
| http_speed.py | 7 import logging, random, time, urllib2 66 logging.info('Target time: %s' % target) 71 logging.info('Transfer of %s took %s (%s b/s)' 84 logging.warning( 109 logging.info('Latency is %s' % latency)
|
| /external/autotest/client/site_tests/firmware_LockedME/ |
| firmware_LockedME.py | 5 import logging 27 logging.info('Check that SW WP is enabled or not...') 29 logging.info('The above flashrom command returns.... %s', 44 logging.info('See if we have an ME...') 50 logging.info('Try to write section %s...', sectname) 59 logging.info('Oops, it worked! Put it back...') 73 logging.info('Check for Manufacturing Mode...') 87 logging.info('%s should be all 0xff...' % sectname) 121 logging.info('We expected no ME and we have no ME, so pass.') 136 logging.info('Pull the ME components from the BIOS...' [all...] |
| /external/autotest/client/site_tests/network_ChromeCellularSmokeTest/ |
| network_ChromeCellularSmokeTest.py | 5 import logging 69 logging.info('Disconnecting from network: ' + network_id) 74 logging.info('Checking that the network is disconnected.') 77 logging.info('The network is disconnected. Checking that the modem is ' 80 logging.info('Modem is disconnected. Disconnect was successful.') 86 logging.info('Connecting to network: ' + network_id) 91 logging.info('Checking that the network is connected.') 94 logging.info('The network is connected. Checking that the modem is in ' 97 logging.info('Modem is connected. Connect was successful.') 111 logging.info('Starting connect/disconnect sequence.' [all...] |
| /external/autotest/client/site_tests/peerd_DiscoverServices/ |
| peerd_DiscoverServices.py | 6 import logging 58 # Start up a fresh copy of peerd with really verbose logging. 87 logging.debug('No peer found.') 89 logging.debug('Found peer=%s', peer) 91 logging.debug('Found %d services, but expected %d.', 101 logging.debug('No service %s found.', service_id) 104 logging.debug('Invalid info found for service %s, ' 109 logging.debug('Missing service IP for service %s.', 115 logging.debug('Expected service IP for service %s=%r ' 141 logging.info('Waiting for peerd to discover our services.' [all...] |
| /external/autotest/server/site_tests/audio_AudioARCPlayback/ |
| audio_AudioARCPlayback.py | 7 import logging 105 logging.info('Setting playback file on Cros device') 108 logging.info('Start recording from Chameleon') 111 logging.info('Start playing %s on Cros device', 118 logging.info('Stopped recording from Chameleon.') 125 logging.info('Read recorded binary from Chameleon.') 128 logging.info('Saving recorded data to %s', recorded_file) 139 logging.info('Start running client side test %s', 160 logging.info('Waiting for client side Play Music app to be ready') 168 logging.info('Client side Play Music app is ready' [all...] |
| /external/autotest/server/site_tests/audio_AudioARCRecord/ |
| audio_AudioARCRecord.py | 7 import logging 108 logging.info('Setting playback data on Chameleon') 111 logging.info('Start recording from Cros device.') 114 logging.info('Start playing %s on Chameleon', 121 logging.info('Stopped recording from Cros device.') 128 logging.info('Read recorded binary from Cros.') 131 logging.info('Saving recorded data to %s', recorded_file) 142 logging.info('Start running client side test %s', 163 logging.info('Waiting for client side microphone app to be ready') 171 logging.info('Client side microphone app is ready' [all...] |
| /external/autotest/server/site_tests/audio_AudioVolume/ |
| audio_AudioVolume.py | 7 import logging 108 logging.info('Setting playback data on Cros device') 117 logging.info('Start recording from Chameleon.') 120 logging.info('Start playing %s on Cros device', 127 logging.info('Stopped recording from Chameleon.') 136 logging.info('Read recorded binary from Chameleon.') 140 logging.info('Saving recorded data to %s', recorded_file) 159 logging.info('low_dominant_spectrals: %s', low_dominant_spectrals) 160 logging.info('high_dominant_spectrals: %s', high_dominant_spectrals) 166 logging.info('Channel %d volume(at %f) / volume(at %f) = %f' [all...] |
| /external/autotest/server/site_tests/display_Resolution/ |
| display_Resolution.py | 7 import logging 78 logging.info('Detected %s chameleon port.', chameleon_port_name) 91 logging.info('Skip unsupported EDID: %s', test_name) 95 logging.info('Close lid...') 104 logging.info('Reboot...') 111 logging.info('Use EDID: %s', test_name) 114 logging.info('Open lid...') 126 logging.info('Set mirrored: %s', test_mirrored) 133 logging.info('Going to suspend...') 135 logging.info('Resumed back' [all...] |
| /external/autotest/server/site_tests/firmware_ECLidSwitch/ |
| firmware_ECLidSwitch.py | 6 import logging 148 logging.error("Keyboard backlight still on when lid close.") 152 logging.error("Keyboard backlight still off when lid open.") 164 logging.info("Stopping powerd") 167 logging.error("check_keycode failed.") 170 logging.error("check_backlight failed.") 172 logging.info("Restarting powerd") 180 logging.info("Shutdown and long delayed wake.") 185 logging.info("Shutdown and short delayed wake.") 190 logging.info("Check keycode and backlight." [all...] |
| /external/curl/tests/ |
| dictserver.py | 11 import logging 18 log = logging.getLogger(__name__) 102 Set up logging from the command line options 104 root_logger = logging.getLogger() 107 formatter = logging.Formatter("%(asctime)s %(levelname)-5.5s %(message)s") 111 handler = logging.FileHandler(options.logfile, mode="w") 113 handler.setLevel(logging.DEBUG) 121 root_logger.setLevel(logging.DEBUG) 124 root_logger.setLevel(logging.INFO) 127 stdout_handler = logging.StreamHandler(sys.stdout [all...] |
| /external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/ |
| SLF4JBridgeHandler.java | 30 import java.util.logging.Handler; 31 import java.util.logging.Level; 32 import java.util.logging.LogManager; 33 import java.util.logging.LogRecord; 63 * <p><b>Installation via <em>logging.properties</em> configuration file:</b></p> 67 * <p>Once SLF4JBridgeHandler is installed, logging by j.u.l. loggers will be directed to 70 * import java.util.logging.Logger; 76 * <p>Please note that translating a java.util.logging event into SLF4J incurs the 79 * SLF4J translation can seriously increase the cost of disabled logging 89 * <li>few j.u.l. logging statements are in play</li [all...] |
| /test/vts-testcase/hal/tv/cec/V1_0/host/ |
| VtsHalTvCecV1_0HostTest.py | 18 import logging 47 logging.info("tv_cec types: %s", self.vtypes) 55 logging.info("addLogicalAddress result: %s", result) 61 logging.info("getPhysicalAddress status: %s, paddr: %s", status, paddr) 71 logging.info("message: %s", message) 73 logging.info("sendMessage result: %s", result) 78 logging.info("getCecVersion version: %s", version) 84 logging.info("getVendorId vendor_id: %s", vendor_id) 89 logging.info("getPortInfo port_infos: %s", port_infos) 113 logging.info("isConnected status: %s", status [all...] |
| /development/gsi/gsi_util/gsi_util/mounters/ |
| adb_mounter.py | 22 import logging 52 logging.info('Prepare file %s -> %s', filename_in_storage, filename) 56 logging.error('Fail to prepare file: %s', filename_in_storage) 75 logging.debug('Created temp dir: %s', self._temp_dir) 82 logging.debug('Removing temp dir: %s', self._temp_dir)
|
| /external/autotest/client/common_lib/cros/ |
| adb_keepalive.py | 8 import logging 46 logging.debug('%s: %s', adb_cmd, output) 68 logging.info('adb not connected. attempting to reconnect') 83 logging.info('Starting adb_keepalive for target %s on socket %s', 90 logging.info('Shutting down')
|
| /external/autotest/client/cros/networking/chrome_testing/ |
| chrome_networking_test_api.py | 5 import logging 59 logging.info('Enabled Network Devices: %s', value) 77 logging.info('Disabling: %s', network) 90 logging.info('Enabling: %s', network) 124 logging.debug('Just hold on for 10 seconds')
|
| /external/autotest/client/site_tests/cellular_DeferredRegistration/ |
| cellular_DeferredRegistration.py | 6 import logging 45 logging.info('Verifying temporary loss of registration behavior') 55 logging.info('Successfully verified temporary loss of registration ' 60 logging.info('Verifying permanent loss of registration behavior') 67 logging.info('Successfully verified permanent loss of registration '
|
| /external/autotest/client/site_tests/cellular_SuspendResume/ |
| cellular_SuspendResume.py | 6 import logging 70 logging.info('Mobile service is available.') 72 logging.info('Mobile service is not available.') 77 logging.debug(properties) 78 logging.info('Power state of mobile device is %s.', 88 logging.info('Polling to check device state is %s.', 96 logging.info('Verified device power state.') 111 logging.info('Machine resumed') 137 logging.debug('Mobile device not ready yet') 144 logging.debug('Mobile device not found. lsusb output:' [all...] |
| /external/autotest/client/site_tests/hardware_Backlight/ |
| hardware_Backlight.py | 4 import logging 36 logging.info("Assuming no keyboard backlight due to %s", str(e)) 45 logging.error('keyboard backlight set %d != %d get', 71 log_level_func = logging.warn 74 log_level_func = logging.error
|
| /external/autotest/client/site_tests/hardware_MemoryLatency/ |
| hardware_MemoryLatency.py | 5 import logging 45 logging.debug('cmd: %s', cmd) 47 logging.debug('Output: %s', out) 58 logging.debug('Matched on size %d', size) 63 logging.debug('Ignoring output line: %s', line)
|
| /external/autotest/client/site_tests/platform_Mosys/ |
| platform_Mosys.py | 5 import re, errno, logging, utils 67 logging.info('cmd not supported: "%s"', cmd); 69 logging.info('cmd needs argument: "%s"', cmd); 71 logging.info('Unable to determine: "%s"', cmd); 73 logging.error('failed to execute "%s"; exit code=%d', cmd, rc);
|
| /external/autotest/server/ |
| adb_utils.py | 11 import logging 39 logging.info('Package %s is already installed.', package_name) 63 logging.debug('Found apk at: %s', apk_url) 70 logging.debug(result.stdout) 74 logging.info('%s is installed successfully.', apk)
|
| site_host_attributes.py | 46 import hashlib, logging, os, utils 86 logging.info('Including private_host_attributes file for %s', host) 89 logging.info("Including labels for %s from database", host) 94 logging.info('Host attribute: %s => %s', key, value) 117 logging.info('Non-attribute string "%s" is ignored', attribute)
|
| /external/autotest/server/site_tests/component_UpdateFlash/ |
| component_UpdateFlash.py | 5 import logging 18 logging.info('+++++ component_UpdateFlash +++++') 19 logging.info('Performing %s', CU_action) 69 logging.info('+++++ Cleaning DUT for other tests +++++') 78 logging.info('+++++ Rebooting DUT on start to reduce flakes +++++')
|
| /external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/ |
| network_WiFi_ChaosConnectDisconnect.py | 5 import logging 44 logging.info('Connection attempt %d', i) 52 logging.info('Connection attempt %d failed; reason: %s', 60 logging.info('Connection attempt %d passed', i) 82 logging.debug('Debug info: %s', debug_info)
|