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

<<41424344454647484950>>

  /external/autotest/server/site_tests/autoupdate_ForcedOOBEUpdate/
autoupdate_ForcedOOBEUpdate.py 5 import logging
27 logging.debug('Canceling the in-progress update.')
105 logging.debug('Progress when we will interrupt: %f', progress)
107 logging.info('We will start interrupting the update.')
173 logging.info('Successfully force updated from %s to %s.', before, after)
  /external/autotest/server/site_tests/enterprise_CFM_CEC/
enterprise_CFM_CEC.py 5 import logging
46 logging.info('CMD: [%s]', cmd)
52 logging.info('CMD ERR:\n' + result.stderr)
53 logging.info('CMD OUT:\n' + result.stdout)
56 logging.info('run command failed. ' + str(e))
  /external/autotest/server/site_tests/enterprise_CFM_Perf/
enterprise_CFM_Perf.py 5 import logging
62 logging.info('Downloading %s to %s', url, local_path)
69 logging.info('chmodding tmpdir %s to 755', tmp_dir)
71 logging.info('Sending %s to %s on DUT', local_path, remote_path)
122 logging.info('Started meeting "%s"', meeting_code)
  /external/autotest/server/site_tests/enterprise_LongevityTrackerServer/
enterprise_longevity_helper.py 10 import logging
187 logging.info('Copied %s to %s)', aggregated_fpath, results_fpath)
204 logging.info('Performance values: %s', perf_values)
205 logging.info('90th percentile: cpu: %s, mem: %s, temp: %s',
233 logging.info('Median of 90th percentile: cpu: %s, mem: %s, temp: %s',
  /external/autotest/server/site_tests/firmware_Cr50DeepSleepStress/
firmware_Cr50DeepSleepStress.py 5 import logging
47 logging.info('running %s', version)
48 logging.info('After %s reboots, Cr50 resumed from deep sleep %s times',
141 logging.info('Minimum suspend-resume cycle is %ds. This is '
149 logging.info('Clear Cr50 deep sleep count')
  /external/autotest/server/site_tests/hardware_StorageStress/
hardware_StorageStress.py 5 import logging, sys, time
129 logging.info(str('check data count: %d' % self._loop_count))
159 logging.info('_write_data')
169 logging.info(str('_verify_data #%d' % self._loop_count))
182 logging.info(str('_full_disk_write #%d' % self._loop_count))
  /external/autotest/server/site_tests/kernel_BootMessagesServer/
kernel_BootMessagesServer.py 5 import logging, os, re
144 logging.error(msg)
151 logging.error('ACPI mismatch\n%s:' % rv)
179 logging.error(msg)
188 logging.error('UNEXPECTED DMESG: %s' % line)
  /external/autotest/server/site_tests/network_EthCapsServer/
network_EthCapsServer.py 5 import logging, os, re, socket, subprocess, tempfile, threading, time
70 logging.info("Wake thread sent WOL wakeup")
100 logging.debug(ln)
104 logging.info("mac addr = %s", self._mac_addr)
126 logging.info("Client cmd = %s", cmd)
  /external/autotest/server/site_tests/platform_GCC/
platform_GCC.py 5 import glob, logging, os, shutil
40 logging.info('%d results parsed in baseline (%s).' %
43 logging.info('%d results parsed in new log (%s).' %
84 logging.info('No gcc directory found, attempting to untar from %s'
94 logging.info('Testing gcc in the following directory: %s' % gcc_dir)
  /external/autotest/site_utils/chromeos_proxy/
swarming_bot_manager.py 13 import logging
89 logging.info('Validating server: %s', server_name)
99 logging.warning('RPC get_servers failed on afe %s: %s', afe, str(e))
127 logging.error(
139 logging.info("Setting signal handler.")
  /external/autotest/site_utils/deployment/prepare/
main.py 14 import logging
15 import logging.config
35 logging.info('Using repair image %s, obtained from AFE', repair_image)
38 logging.info('DRY RUN: Would have run actions %s', opts.actions)
97 """Configure logging globally.
103 logging.config.dictConfig({
121 'class': 'logging.StreamHandler',
125 'class': 'logging.FileHandler',
  /external/autotest/site_utils/
mysql_bootstrap.py 44 import logging
154 logging.error("Cannot become/ssh into dest host. You need to bootstrap "
193 logging.error('Unable to get gateway: %s', e)
225 logging.info('Bootstrapping user %s on host %s against db server %s',
231 logging.info('Enabling access through gateway %s', gateway)
test_that.py 12 import logging
13 # Turn the logging level to INFO before importing other autotest
14 # code, to avoid having failed import logging messages confuse the
16 logging.basicConfig(level=logging.INFO)
45 logging.info('Board unspecified, attempting to determine board from host.')
52 logging.info('Detected host board: %s', board)
200 logging.info('Skipping quickmerge step.')
202 logging.info('Running autotest_quickmerge step.')
208 logging.info('quickmerge| %s', message.strip()
    [all...]
  /external/autotest/site_utils/rpm_control_system/
rpm_client.py 7 import logging
75 logging.exception(e)
84 logging.error(error_msg)
105 logging.exception(e)
114 logging.error(error_msg)
  /external/chromium-trace/catapult/systrace/profile_chrome/
main.py 7 import logging
61 parser.add_option('-v', '--verbose', help='Verbose logging.',
85 logging.basicConfig()
88 logging.getLogger().setLevel(logging.DEBUG)
144 logging.warning('Using the "webview" category in atrace together with '
  /external/libbrillo/brillo/errors/
error.cc 7 #include <base/logging.h>
18 // Use logging::LogMessage() directly instead of LOG(ERROR) to substitute
23 logging::LogMessage(location.file_name(), location.line_number(),
24 logging::LOG_ERROR)
29 logging::LogMessage(
30 location.file_name(), location.line_number(), logging::LOG_ERROR).stream()
  /external/syzkaller/tools/syz-headerparser/headerlib/
container.py 9 import logging
20 def __init__(self, struct_name, fr_list, loglvl=logging.INFO):
30 self.logger = logging.getLogger(self.__class__.__name__)
31 formatter = logging.Formatter('DEBUG:%(name)s:%(message)s')
32 sh = logging.StreamHandler()
164 def __init__(self, filenames, loglvl=logging.INFO,
178 self.logger = logging.getLogger(self.__class__.__name__)
179 formatter = logging.Formatter('DEBUG:%(name)s:%(message)s')
180 sh = logging.StreamHandler()
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions.py 49 from tensorflow.python.platform import tf_logging as logging
102 logging.info('Loading model from checkpoint: %s.', checkpoint_path)
107 logging.info('No variables found in graph, not creating Saver() object.')
235 logging.warning('Training got Aborted error. Keep training.')
325 logging.info('Training steps [%d,%s)', last_step, 'inf'
342 logging.error(failure_message)
345 logging.warning(failure_message)
353 logging.error(
360 logging.info(
365 logging.warn('Got exception during tf.learn training loop possibly
    [all...]
  /external/curl/tests/
negtelnetserver.py 11 import logging
18 log = logging.getLogger(__name__)
281 Set up logging from the command line options
283 root_logger = logging.getLogger()
286 formatter = logging.Formatter("%(asctime)s %(levelname)-5.5s "
292 handler = logging.FileHandler(options.logfile, mode="w")
294 handler.setLevel(logging.DEBUG)
302 root_logger.setLevel(logging.DEBUG)
305 root_logger.setLevel(logging.INFO)
308 stdout_handler = logging.StreamHandler(sys.stdout
    [all...]
smbserver.py 30 import logging
44 log = logging.getLogger(__name__)
331 Set up logging from the command line options
333 root_logger = logging.getLogger()
336 formatter = logging.Formatter("%(asctime)s %(levelname)-5.5s %(message)s")
340 handler = logging.FileHandler(options.logfile, mode="w")
342 handler.setLevel(logging.DEBUG)
350 root_logger.setLevel(logging.DEBUG)
353 root_logger.setLevel(logging.INFO)
356 stdout_handler = logging.StreamHandler(sys.stdout
    [all...]
  /external/jarjar/lib/
maven-plugin-api.jar 
  /external/v8/tools/sanitizers/
sancov_formatter.py 44 import logging
53 logging.basicConfig(level=logging.INFO)
217 logging.info('Reading instrumented lines from %d executables.',
228 logging.info('Read data from %d executables, which covers %d files.',
230 logging.info('Writing results to %s', options.json_output)
353 logging.info('Merging %d sancov files into %s',
370 logging.info('Merged data from %d executables, which covers %d files.',
372 logging.info('Writing results to %s', options.json_output)
385 logging.info('Splitting off %d coverage files from %s'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
handlers.py 18 Additional handlers for the logging package for Python. The core package is
24 To use, simply 'import logging.handlers' and log away!
27 import logging, socket, os, cPickle, struct, time, re
53 class BaseRotatingHandler(logging.FileHandler):
61 Use the specified filename for streamed logging
65 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
79 logging.FileHandler.emit(self, record)
87 Handler for logging to a set of files, which switches from one file
92 Open the specified file and use it as the stream for logging.
164 Handler for logging to a file, rotating the log file at certain timed
    [all...]
  /external/autotest/client/common_lib/
test.py 23 import logging
276 logging.info('___________________ constraint = %s', constraint)
277 logging.info('___________________ keyvals = %s', keyval_env)
349 logging.debug('Starting before_iteration_hooks for %s',
355 logging.debug('before_iteration_hooks completed')
369 logging.debug('starting test(run_once()), test details follow'
372 logging.debug('The test has completed successfully')
380 logging.debug('Test failed due to %s. Exception log follows the '
385 logging.debug('Starting after_iteration_hooks for %s',
391 logging.debug('after_iteration_hooks completed'
    [all...]
  /external/python/cpython2/Lib/logging/
handlers.py 18 Additional handlers for the logging package for Python. The core package is
23 To use, simply 'import logging.handlers' and log away!
26 import errno, logging, socket, os, cPickle, struct, time, re
52 class BaseRotatingHandler(logging.FileHandler):
60 Use the specified filename for streamed logging
64 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
78 logging.FileHandler.emit(self, record)
86 Handler for logging to a set of files, which switches from one file
91 Open the specified file and use it as the stream for logging.
164 Handler for logging to a file, rotating the log file at certain time
    [all...]

Completed in 2043 milliseconds

<<41424344454647484950>>