HomeSort by relevance Sort by last modified time
    Searched refs:logging (Results 1801 - 1825 of 5540) sorted by null

<<71727374757677787980>>

  /external/autotest/client/site_tests/platform_MetricsUploader/
platform_MetricsUploader.py 5 import logging
171 logging.debug('Proto received is: ' + str(proto))
209 logging.info(('=' * 4) + 'Check that metrics samples can be uploaded '
213 logging.info(('=' * 4) + 'Check that the metrics uploader does not '
217 logging.info(('=' * 4) + 'Check that the product id can be set '
223 logging.info(('=' * 4) + 'Check that metrics are not uploaded when '
  /external/autotest/client/tests/ffsb/
ffsb.py 1 import os, string, logging, re, random, shutil
175 logging.info("FFSB command: %s", cmd)
180 logging.info(self.results)
184 logging.error('Failed to execute FFSB : %s', e)
194 logging.info('FFSB test passed')
195 logging.info('Cleaning up test data...')
  /external/autotest/scheduler/
drone_manager.py 3 import logging
214 logging.info('Using results repository on %s',
262 logging.info('Adding drone %s' % hostname)
268 logging.error('Failed to initialize drone %s with error: %s',
320 logging.info('Drone %s.max_processes: %s', hostname,
322 logging.info('Drone %s.enabled: %s', hostname, drone.enabled)
323 logging.info('Drone %s.allowed_users: %s', hostname,
325 logging.info('Drone %s.support_ssp: %s', hostname,
341 logging.info('Queue cleanup_orphaned_containers at %s',
369 logging.warning('dropping leaked pidfile %s', pidfile_id
    [all...]
drones.py 4 import logging
94 logging.info("Running drone_utility on %s", self.hostname)
101 logging.critical('Invalid response:\n---\n%s\n---', result.stdout)
109 logging.warning(subject + '\n' + warning)
187 logging.exception('Drone %s does not support server-side '
237 logging.error('Drone %s is unpingable, kicking out', hostname)
  /external/autotest/server/hosts/
host_info.py 8 import logging
239 logging.debug('Committing HostInfo to store %s', self)
243 logging.debug('HostInfo updated to: %s', info)
274 logging.debug('Refreshing HostInfo using store %s', self)
275 logging.debug('Old host_info: %s', self._cached_info)
283 logging.debug('New host_info: %s', info)
  /external/autotest/server/site_tests/display_LidCloseOpen/
display_LidCloseOpen.py 7 import logging, time
37 logging.info('CLOSING LID...')
44 logging.info('OPENING LID...')
76 logging.info('DUT IS DOCKED!')
85 logging.info('DUT STILL SUSPENDED')
153 logging.info('TEST CASE: %s > CLOSE_LID > %s > %s > OPEN_LID',
  /external/autotest/site_utils/
lab_inventory.py 42 Suppress all logging, metrics reporting, and sending e-mail.
55 import logging
56 import logging.handlers
659 logging.debug('Creating DUT repair recommendations')
663 logging.debug('Listing failed DUTs for %s', model)
727 logging.debug('Creating model inventory')
737 logging.debug('Counting %2d DUTS for model %s',
803 logging.debug('Creating pool inventory')
814 logging.debug('Counting %2d DUTs for %s, %s',
855 logging.debug('Creating idle inventory'
    [all...]
  /external/autotest/site_utils/lxc/
zygote.py 5 import logging
47 logging.debug(
109 logging.debug('Destroying Zygote %s', self.name)
154 logging.debug('copy %s to %s', host_path, container_path)
262 logging.debug('mount: %s', info.mount_point)
266 logging.debug('mount_ro: %s', info.mount_point)
  /external/libmojo/third_party/catapult/devil/devil/android/
fastboot_utils.py 11 import logging
166 logging.warning('No board type found in %s.',
169 logging.warning('%s not found. Unable to use it to verify device.',
195 logging.warning('Could not verify build is meant to be installed on '
208 logging.info(
211 logging.info(
  /external/libmojo/third_party/catapult/devil/devil/utils/
cmd_helper.py 7 import logging
119 logging.info(str(args) + ' ' + (cwd or ''))
153 logging.info('[host]%s> %s', cwd, args)
175 logging.critical('STDERR: %s', stderr)
176 logging.debug('STDOUT: %s%s', stdout[:4096].rstrip(),
276 logging.debug('STDOUT+STDERR: %s%s', str_output[:4096].rstrip(),
  /external/skia/infra/bots/
recipes.py 19 import logging
114 logging.info('Running %r', argv)
120 logging.info('Running %r', argv)
126 logging.info('Running %r', argv)
189 logging.getLogger().setLevel(logging.INFO)
  /external/skqp/infra/bots/
recipes.py 19 import logging
114 logging.info('Running %r', argv)
120 logging.info('Running %r', argv)
126 logging.info('Running %r', argv)
189 logging.getLogger().setLevel(logging.INFO)
  /external/tensorflow/tensorflow/contrib/training/python/training/
evaluation.py 145 from tensorflow.python.platform import tf_logging as logging
192 logging.info('Waiting for new checkpoint at %s', checkpoint_dir)
201 logging.info('Found new checkpoint at %s', checkpoint_path)
254 logging.info('Timed-out waiting for a checkpoint.')
448 logging.info('Starting evaluation at ' + time.strftime(
454 logging.info('Finished evaluation at ' + time.strftime(
  /external/tensorflow/tensorflow/python/platform/
tf_logging.py 16 """Logging utilities."""
24 import logging as _logging
28 from logging import DEBUG
29 from logging import ERROR
30 from logging import FATAL
31 from logging import INFO
32 from logging import WARN
63 # already configured. This prevents double logging in those cases.
94 @tf_export('logging.log')
99 @tf_export('logging.debug'
    [all...]
  /external/tensorflow/tensorflow/tools/api/tests/
api_compatibility_test.py 43 from tensorflow.python.platform import tf_logging as logging
164 logging.error(self._test_readme_message)
165 logging.error('%d differences found between API and golden.', diff_count)
168 logging.error('Issue %d\t: %s', i + 1, messages[i])
172 logging.warning(self._update_golden_warning)
191 logging.info('No differences found between API and golden.')
  /external/v8/tools/sanitizers/
sancov_merger.py 25 import logging
35 logging.basicConfig(level=logging.INFO)
139 logging.info('Executing %d merge jobs in parallel for %d executables.' %
155 logging.info('Merging %d intermediate results.' % len(inputs))
199 logging.info('Executing %d merge jobs in parallel.' % len(inputs))
  /packages/apps/Messaging/src/com/android/messaging/util/
LogSaver.java 31 import java.util.logging.FileHandler;
32 import java.util.logging.Formatter;
33 import java.util.logging.Handler;
34 import java.util.logging.Level;
35 import java.util.logging.Logger;
216 public String format(java.util.logging.LogRecord r) {
  /prebuilts/ndk/
update.py 19 import logging
30 return logging.getLogger(__name__)
163 verbose_map = (logging.WARNING, logging.INFO, logging.DEBUG)
167 logging.basicConfig(level=verbose_map[verbosity])
  /test/vts/testcases/template/gtest_binary_test/
gtest_binary_test.py 17 import logging
56 logging.info("Disable batch mode when collecting tests.")
108 logging.error(
124 logging.info('Gtest test case: %s' % test_case)
177 logging.error(line)
188 logging.info(line)
  /test/vts-testcase/hal/automotive/vehicle/V2_0/host/
VtsHalAutomotiveVehicleV2_0HostTest.py 18 import logging
42 logging.info("system_uid: %s", system_uid)
56 logging.info("vehicle types: %s", self.vtypes)
73 logging.info("all supported properties: %s", self.configList)
115 logging.info("0x%x get request: %s", propertyId, vp)
117 logging.info("0x%x get response: %s, %s", propertyId, status, value)
121 logging.warning("attempt to read property 0x%x returned error %d",
145 logging.info("0x%x set request: %s", propertyId, vp)
147 logging.info("0x%x set response: %s", propertyId, status)
209 logging.info("HVAC_POWER_ON not supported"
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/
audio_analysis.py 18 import logging
107 logging.debug('signal RMS = %s', signal_rms)
111 logging.warning(
116 logging.debug('Doing spectral analysis ...')
382 logging.info(
390 logging.debug('Got one unmatched block with max_corr: %s', max_corr)
  /external/autotest/server/
autotest.py 5 import logging
133 logging.debug('Using existing host autodir: %s', autodir)
141 logging.debug('Found existing autodir at %s', path)
144 logging.debug('%s does not exist on %s', autotest_binary,
177 logging.debug('Failed to create %s', path)
264 logging.warning('Failed to obtain host info: %r', e)
265 logging.warning('Skipping autotest fetch location based on %s',
271 logging.warning("No %s for %s", JOB_REPO_URL, self.host)
274 logging.info('Got job repo url from host attributes: %s',
364 logging.info("Installing autotest on %s", host.hostname
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
SocketHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
29 import java.util.logging.Filter;
30 import java.util.logging.Formatter;
31 import java.util.logging.Handler;
32 import java.util.logging.Level;
33 import java.util.logging.LogManager;
34 import java.util.logging.LogRecord;
35 import java.util.logging.LoggingPermission;
36 import java.util.logging.SocketHandler
    [all...]
  /external/autotest/client/cros/networking/
shill_xmlrpc_server.py 8 import logging
9 import logging.handlers
45 logging.error('UI did not stop, there could be trouble ahead.')
169 logging.debug('connect_wifi()')
174 logging.info('Using default interface for bgscan configuration')
181 logging.error('Defaulting to first interface of %r', interfaces)
274 logging.debug('disconnect()')
278 level = logging.info
280 level = logging.error
633 logging.basicConfig(level=logging.DEBUG
    [all...]
  /external/autotest/server/cros/ap_configurators/
dynamic_ap_configurator.py 7 import logging
137 logging.error('Dumping command list %s', self._command_list)
163 logging.error('Getting the screenshot failed. %s', e)
167 logging.error('Alert was handled.')
188 logging.error('Unable to establish webdriver connection to '
263 logging.info('Webdriver connection established to server %s',
527 logging.info('Attempting to load page')
529 logging.debug('Page navigation complete')
536 logging.info('Forcing a page refresh')
538 logging.info('Waiting for router %s to come back up.'
    [all...]

Completed in 1250 milliseconds

<<71727374757677787980>>