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

1 23 4 5 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/log/
TextFormatter.java 3 import java.util.logging.LogRecord;
4 import java.util.logging.SimpleFormatter;
9 * default formatter of java.util.logging outputs everything on two
  /bionic/tools/bionicbb/
bionicbb.py 18 import logging
50 logging.debug('%s #%s %s: %s', name, number, status, full_url)
76 logging.debug('POST %s: %s', url, request_data)
83 logging.debug('POST %s: %s', url, request_data)
86 logging.warning('Result for bionic-lint ignored')
88 logging.error('Unknown project: %s', name)
107 logging.info('No rejection to drop: %s %s', change_id, patch_set)
110 logging.info('Dropping rejection: %s %s', change_id, patch_set)
116 logging.debug('POST %s: %s', url, request_data)
122 logging.basicConfig(level=logging.INFO
    [all...]
  /external/grpc-grpc/tools/run_tests/python_utils/
start_port_server.py 17 import logging
38 logging.info('detected port server running version %d', version)
41 logging.exception('failed to detect port server')
50 logging.info('my port server is version %d', current_version)
53 logging.info('port_server version mismatch: killing the old one')
60 logging.info('starting port_server, with log file %s', logfile)
87 logging.warning(
91 logging.error('port_server failed to start')
97 logging.info(
101 logging.exception
    [all...]
  /external/autotest/client/site_tests/platform_AddPrinter/
fake_printer.py 1 import logging
28 logging.info('waiting for a printing request')
31 logging.info('printing request from ' + str(client_address))
36 logging.info('no more data from ' + str(client_address))
40 logging.info('printing request is dumped to ' + str(logfile))
  /external/autotest/frontend/afe/
rpcserver_logging.py 1 import logging, logging.handlers, time, os
17 handler = logging.handlers.SocketHandler(
23 rpc_logger = logging.getLogger('rpc_logger')
26 rpc_logger.setLevel(logging.DEBUG)
  /external/autotest/server/site_tests/ssp_PackageInstall/
ssp_PackageInstall.py 5 import logging
23 logging.debug('Installing package %s...', package)
33 logging.debug('Installing package %s...', package)
56 logging.info('Found sox executable.')
60 logging.info('Found webdriver at %s', webdriver.__file__)
  /external/autotest/site_utils/stats/
log_daemon_common.py 4 from logging import handlers
8 from chromite.lib import cros_logging as logging
33 """Sets up logging based on the parsed arguments."""
34 # Set up logging.
35 root = logging.getLogger()
41 root.addHandler(logging.StreamHandler(sys.stdout))
42 root.setLevel(logging.DEBUG)
  /external/parameter-framework/upstream/bindings/python/
sample.py 32 import logging
41 logging.info(msg)
43 logging.warning(msg)
46 logging.root.setLevel(logging.INFO)
  /external/autotest/client/tests/iozone/
postprocessing.py 11 import os, sys, optparse, logging, math, time
117 logging.info("Results will be stored in %s", output_dir)
198 # Here we'll use the logging system to put the output of our analysis
200 logger = logging.getLogger()
201 formatter = logging.Formatter("")
203 logging.info("")
204 logging.info("TABLE: SUMMARY of ALL FILE and RECORD SIZES Results in MB/sec")
205 logging.info("")
206 logging.info("FILE & RECORD INIT RE RE RANDOM RANDOM BACKWD RECRE STRIDE F FRE F FRE")
207 logging.info("SIZES (KB) WRITE WRITE READ READ READ WRITE READ WRITE READ WRITE (…)
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
register_cdma_machine.py 5 import logging
24 logging.info('RegisterCdmaMachine: Canceling register.')
29 logging.info('RegisterCdmaMachine: Setting state to ENABLED.')
51 logging.info('RegisterCdmaMachine: Modem is ENABLED.')
52 logging.info('RegisterCdmaMachine: Setting state to SEARCHING.')
60 logging.info('RegisterCdmaMachine: Modem is SEARCHING.')
63 logging.info('RegisterCdmaMachine: No network available.')
64 logging.info('RegisterCdmaMachine: Setting state to ENABLED.')
75 logging.info(
77 logging.info('RegisterMachineCdma: Setting state to REGISTERED.'
    [all...]
  /external/autotest/client/cros/chameleon/
resolution_comparison.py 7 import logging
42 logging.exception(e)
46 logging.info('Checking the resolutions of Chameleon and CrOS...')
60 logging.error(message)
63 logging.warn(message)
65 logging.info('Resolutions across CrOS and Chameleon match: %dx%d',
99 logging.exception(e)
103 logging.info('Checking the resolutions of Chameleon and CrOS...')
111 logging.error(message)
114 logging.info('Detected VGA resolutions:
    [all...]
  /external/autotest/server/control_segments/
get_network_stats 19 logging.info('ping failed: not collecting network stats')
40 logging.info('get_network_stats: no default interface')
47 logging.info('get_network_stats: %s RXbytes %s TXbytes %s',
51 logging.info('get_network_stats: iface %s not in /proc/net/dev',
54 logging.info('get_network_stats: ignoring exception: %s', e)
  /external/libbrillo/brillo/
syslog_logging.cc 12 // syslog.h and base/logging.h both try to #define LOG_INFO and LOG_WARNING.
13 // We need to #undef at least these two before including base/logging.h. The
28 #include <base/logging.h>
43 case logging::LOG_INFO:
47 case logging::LOG_WARNING:
51 case logging::LOG_ERROR:
55 case logging::LOG_FATAL:
94 logging::LoggingSettings settings;
95 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
96 logging::InitLogging(settings)
    [all...]
  /external/autotest/client/common_lib/cros/
cfm_hangouts_api.py 5 import logging
27 logging.info('Hotrod telemetry commands available for testing.')
47 logging.info('Reached oobe start page')
59 logging.info('Skipped oobe screen.')
66 logging.info('Is on oobe start page.')
68 logging.info('Is not on oobe start page.')
97 logging.info('Started hangout session: %s', hangout_name)
110 logging.info('Ended hangout session.')
117 logging.info('Is in hangout session.')
119 logging.info('Is not in hangout session.'
    [all...]
  /external/autotest/client/
setup_modules_unittest.py 3 import cStringIO, logging, os, sys, unittest
18 self.old_root_logging_level = logging.root.level
19 logging.basicConfig(level=logging.ERROR)
21 logging.raiseExceptions = 1
26 # Undo the setUp logging.basicConfig call.
27 logging.basicConfig(level=self.old_root_logging_level)
37 record = logging.LogRecord(
38 'test', logging.DEBUG, __file__, 0, 'MESSAGE', 'ARGS', None)
42 setup_modules._autotest_logging_handle_error(logging.Handler()
    [all...]
  /external/autotest/server/cros/
dark_resume_utils.py 5 import logging
49 logging.info('Suspending DUT (in background)...')
55 logging.info('Waking DUT from server.')
76 logging.info('Setting up dark resume preferences')
81 logging.debug('Creating temporary powerd prefs at %s', TMP_POWER_DIR)
84 logging.debug('Enabling dark resume')
90 logging.debug('Restarting powerd with new settings')
93 logging.debug('Starting XMLRPC session to watch for dark resumes')
100 logging.info('Tearing down dark resume preferences')
102 logging.debug('Cleaning up temporary powerd bind mounts'
    [all...]
  /external/autotest/server/site_tests/firmware_DevMode/
firmware_DevMode.py 5 import logging
29 logging.info("-[bypass_dev_mode]-")
30 logging.info("Bypassing developer warning screen using Menu "
39 logging.info("Selecting power button as enter key to select "
43 logging.info("Selecting power button as enter key to select "
49 logging.info("Enable dev mode.")
64 logging.info("Expected developer mode boot and enable normal mode.")
71 logging.info("Expected normal mode boot, done.")
84 logging.info("Skipping dev mode transition in EC RW test.")
87 logging.info("Rebooting into fake recovery mode (EC still in RW)."
    [all...]
  /external/autotest/server/site_tests/firmware_ECCharging/
firmware_ECCharging.py 5 import logging
33 logging.error("Caught exception: %s", str(e))
41 logging.info("Battery desired voltage = %d mV", voltage)
49 logging.info("Battery desired current = %d mA", current)
57 logging.info("Battery actual voltage = %d mV", voltage)
65 logging.info("Battery actual current = %d mA", current)
73 logging.info("Battery charge = %d %%", charge)
81 logging.info("Charger target voltage = %d mV", voltage)
89 logging.info("Charger target current = %d mA", current)
133 logging.info("Battery is full. Unable to test."
    [all...]
  /external/python/cpython3/PC/layout/support/
logging.py 2 Logging support for make_layout.
8 import logging
28 LOG = logging.getLogger("make_layout")
29 LOG.level = logging.DEBUG
32 s_level = max(logging.ERROR - ns.v * 10, logging.DEBUG)
33 f_level = max(logging.WARNING - ns.v * 10, logging.DEBUG)
35 s_level = logging.ERROR
36 f_level = logging.INF
    [all...]
  /external/autotest/client/common_lib/
logging_config.py 1 import logging
10 logging.basicConfig(level=logging.DEBUG)
13 class AllowBelowSeverity(logging.Filter):
16 the normal logging level filtering does.
26 class VarLogMessageFormatter(logging.Formatter):
28 Respews logging.* strings on the DUT to /var/log/messages for easier
45 global_level = logging.DEBUG
46 stdout_level = logging.INFO
47 stderr_level = logging.ERRO
    [all...]
  /external/autotest/client/common_lib/cros/manual/
cfm_helper.py 9 import logging
25 logging.info('---Get the latest chrome log file')
30 logging.exception('Fail to run command %s.', cmd)
32 logging.info('---cmd: %s', cmd)
33 logging.info('---output: %s', output.lower().strip())
44 logging.info('---Get the latest reboot log')
48 logging.exception('Fail to run command %s.', cmd)
50 logging.info('---cmd: %s', cmd)
51 logging.info('---output: %s', output.lower().strip())
64 logging.info('---cmd: %s', cmd
    [all...]
  /external/autotest/client/site_tests/graphics_Drm/
graphics_Drm.py 5 import logging
39 logging.error('Error: found Chromebook without display.')
52 logging.warning('No display connected, skipping test.')
57 logging.warning('Vulkan is required by test but is not '
63 logging.warning('Test requires kernel version >= %s,'
68 logging.warning('Baytrail is on kernel v4.4, but there is no '
87 logging.info('Passed: %s', self._command)
88 logging.debug('Duration: %s: (%0.2fs)'
92 logging.error('Failed: Timeout while running %s (timeout=%0.2fs)'
94 logging.debug(e
    [all...]
  /external/autotest/server/site_tests/firmware_ECUpdateId/
firmware_ECUpdateId.py 5 import logging
48 logging.error("Caught exception: %s", str(e))
57 logging.info("Copy EC RW from '%s' to '%s'",
61 logging.info("EC reboot to switch slot. Wait DUT up...")
68 logging.info("Current EC hash: %s", ec_hash)
76 logging.info("Expected EC hash %s but now %s",
87 logging.info("Expected EC in %s but now in %s",
96 logging.info("Corrupt the EC section: %s", section)
111 logging.info("Check the current state and record hash.")
115 logging.info("Modify EC ID and flash it back to BIOS..."
    [all...]
  /development/gsi/gsi_util/
gsi_util.py 20 import logging
34 _LOGGING_LEVEL = logging.WARNING
43 # Sets up default logging.
44 logging.basicConfig(format=self._LOGGING_FORMAT, level=self._LOGGING_LEVEL)
62 logging.getLogger().setLevel(logging.DEBUG)
67 logging.error('%s: %s', argv[0], e.message)
69 logging.exception(e)
  /external/autotest/client/site_tests/desktopui_MashLogin/
desktopui_MashLogin.py 5 import logging
29 logging.warning('Unable to capture screenshot. %s', e)
49 logging.warning('Skipping test run on this board.')
59 logging.info('Testing Chrome with Mash startup.')
61 logging.info('Chrome with Mash started and loaded OOBE.')
64 logging.info('Testing Chrome with Mash login.')
66 logging.info('Chrome login with Mash succeeded.')

Completed in 1404 milliseconds

1 23 4 5 6 7 8 91011>>