| /external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/ |
| protocol_loop.py | 21 import logging namespace 25 'debug': logging.DEBUG, 26 'info': logging.INFO, 27 'warning': logging.WARNING, 28 'error': logging.ERROR, 96 elif option == 'logging': 97 logging.basicConfig() # XXX is that good to call it here? 98 self.logger = logging.getLogger('pySerial.loop') 100 self.logger.debug('enabled logging')
|
| protocol_socket.py | 23 import logging namespace 27 'debug': logging.DEBUG, 28 'info': logging.INFO, 29 'warning': logging.WARNING, 30 'error': logging.ERROR, 109 if option == 'logging': 110 logging.basicConfig() # XXX is that good to call it here? 111 self.logger = logging.getLogger('pySerial.socket') 113 self.logger.debug('enabled logging')
|
| /external/chromium_org/tools/valgrind/ |
| drmemory_analyze.py | 13 import logging namespace 169 logging.info("PASS: No error reports found") 174 logging.info("Found %i error reports" % len(to_report)) 177 logging.info("Report #%d\n%s" % (self.error_count, report)) 178 logging.info("Total: %i error reports" % len(to_report)) 192 logging.getLogger().setLevel(logging.INFO)
|
| tsan_analyze.py | 14 import logging namespace 237 logging.info("FAIL! Found %i report(s)" % len(reports)) 239 logging.info('\n' + report) 246 logging.error("FAIL! Sanity check failed!") 252 logging.info("PASS: No reports found") 265 logging.getLogger().setLevel(logging.INFO)
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldLoggerTest.java | 18 package libcore.java.util.logging; 23 import java.util.logging.Filter; 24 import java.util.logging.Handler; 25 import java.util.logging.Level; 26 import java.util.logging.LogManager; 27 import java.util.logging.LogRecord; 28 import java.util.logging.Logger; 32 private final static String VALID_RESOURCE_BUNDLE = "bundles/java/util/logging/res";
|
| /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_support_extension/ |
| pnacl_component_crx_gen.py | 15 import logging namespace 206 logging.info("**** %s\t%s", short_desc, long_desc) 215 logging.info('Clean skipped -- no previous output directory!') 230 logging.info('UseWhitelistedChars using: %s' % result) 327 logging.getLogger().setLevel(logging.DEBUG) 329 logging.getLogger().setLevel(logging.ERROR) 330 logging.info('pnacl_component_crx_gen w/ options %s and args %s\n'
|
| /external/chromium_org/third_party/skia/gm/rebaseline_server/ |
| compare_to_expectations.py | 16 import logging namespace 88 logging.info('Results complete; took %d seconds.' % 198 logging.info('Reading actual-results JSON files from %s...' % 202 logging.info('Reading expected-results JSON files from %s...' % 240 logging.info('Generating pixel diffs for builder #%d of %d, "%s"...' % 296 logging.warning('No expectations found for test: %s' % { 340 logging.exception('got exception while creating new ImagePair') 349 logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', 351 level=logging.INFO)
|
| /external/chromium_org/tools/telemetry/telemetry/util/ |
| find_dependencies.py | 7 import logging namespace 44 logging.info('Finding Python dependencies of %s' % module_path) 69 logging.info('Finding page sets in %s' % base_dir) 250 logging.getLogger().setLevel(logging.DEBUG) 252 logging.getLogger().setLevel(logging.INFO) 254 logging.getLogger().setLevel(logging.WARNING)
|
| /external/skia/gm/rebaseline_server/ |
| compare_to_expectations.py | 16 import logging namespace 88 logging.info('Results complete; took %d seconds.' % 198 logging.info('Reading actual-results JSON files from %s...' % 202 logging.info('Reading expected-results JSON files from %s...' % 240 logging.info('Generating pixel diffs for builder #%d of %d, "%s"...' % 296 logging.warning('No expectations found for test: %s' % { 340 logging.exception('got exception while creating new ImagePair') 349 logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', 351 level=logging.INFO)
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
| util.py | 52 # Logging 88 import logging, atexit namespace 90 logging._acquireLock() 94 _logger = logging.getLogger(LOGGER_NAME) 96 logging.addLevelName(SUBDEBUG, 'SUBDEBUG') 97 logging.addLevelName(SUBWARNING, 'SUBWARNING') 99 # XXX multiprocessing should cleanup before logging 108 logging._releaseLock() 114 Turn on logging and add a handler which prints to stderr 117 import logging namespace [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
| util.py | 52 # Logging 88 import logging, atexit namespace 90 logging._acquireLock() 94 _logger = logging.getLogger(LOGGER_NAME) 96 logging.addLevelName(SUBDEBUG, 'SUBDEBUG') 97 logging.addLevelName(SUBWARNING, 'SUBWARNING') 99 # XXX multiprocessing should cleanup before logging 108 logging._releaseLock() 114 Turn on logging and add a handler which prints to stderr 117 import logging namespace [all...] |
| /external/chromium_org/build/android/gyp/util/ |
| build_device.py | 9 import logging namespace 68 logging.getLogger().disabled = True 75 logging.getLogger().disabled = False
|
| /external/chromium_org/build/android/ |
| screenshot.py | 9 import logging namespace 53 parser.add_option('-v', '--verbose', help='Verbose logging.', 71 logging.getLogger().setLevel(logging.DEBUG)
|
| /external/chromium_org/chrome/common/extensions/docs/server2/ |
| app_yaml_helper.py | 5 import logging namespace 81 logging.warning( 118 logging.warning('All revisions are greater than %s' % app_version)
|
| /external/chromium_org/mojo/tools/ |
| test_runner.py | 8 import logging namespace 13 _logging = logging.getLogger() 21 logging.basicConfig() 23 # _logging.setLevel(logging.DEBUG)
|
| /external/chromium_org/net/tools/testserver/ |
| run_testserver.cc | 10 #include "base/logging.h" 31 logging::LoggingSettings settings; 32 settings.logging_dest = logging::LOG_TO_ALL; 34 if (!logging::InitLogging(settings)) { 35 printf("Error: could not initialize logging. Exiting.\n");
|
| /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
| inspector_backend_list.py | 6 import logging namespace 48 logging.error('About to explode: _inspectable_contexts_dict.keys() = %s', 92 logging.debug('webSocketDebuggerUrl missing, removing %s'
|
| /frameworks/base/core/tests/coretests/src/android/net/http/ |
| CookiesTest.java | 26 import java.util.logging.Logger; 27 import java.util.logging.SimpleFormatter; 28 import java.util.logging.StreamHandler;
|
| /frameworks/webview/chromium/tools/ |
| merge_common.py | 17 import logging namespace 156 logging.info('Keeping ours for the following locally deleted files.\n %s', 168 logging.info('Adding theirs for the following locally deleted files.\n %s',
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
| standalone.py | 165 import logging namespace 166 import logging.handlers namespace 373 logging.warning('Wrong format in map file:' + line) 379 logging.error(str(e)) 410 logging.warning('Warning in source loading: %s' % warning) 850 return logging.getLogger('%s.%s' % (c.__module__, c.__name__)) 854 logging.addLevelName(common.LOGLEVEL_FINE, 'FINE') 856 logger = logging.getLogger() 857 logger.setLevel(logging.getLevelName(options.log_level.upper())) 859 handler = logging.handlers.RotatingFileHandler [all...] |
| /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/ |
| Antlr3ErrorLog.java | 36 import org.apache.maven.plugin.logging.Log; 39 * The Maven plexus container gives us a Log logging provider
|
| /external/apache-http/src/org/apache/commons/logging/ |
| Log.java | 18 package org.apache.commons.logging; 21 * <p>A simple logging interface abstracting logging APIs. In order to be 26 * <p> The six logging levels used by <code>Log</code> are (in order): 36 * logging system is implementation dependent. 40 * <p>Performance is often a logging concern. 54 * <p>Configuration of the underlying logging system will generally be done 55 * external to the Logging APIs, through whatever mechanism is supported by 65 // ----------------------------------------------------- Logging Properties 69 * <p> Is debug logging currently enabled? </p [all...] |
| /external/apache-http/src/org/apache/commons/logging/impl/ |
| Jdk14Logger.java | 18 package org.apache.commons.logging.impl; 22 import java.util.logging.Level; 23 import java.util.logging.Logger; 25 import org.apache.commons.logging.Log; 29 * <p>Implementation of the <code>org.apache.commons.logging.Log</code> 30 * interface that wraps the standard JDK logging mechanisms that were 107 * Logs a message with <code>java.util.logging.Level.FINE</code>. 110 * @see org.apache.commons.logging.Log#debug(Object) 118 * Logs a message with <code>java.util.logging.Level.FINE</code>. 122 * @see org.apache.commons.logging.Log#debug(Object, Throwable [all...] |
| /external/chromium_org/base/mac/ |
| mach_logging.cc | 30 namespace logging { namespace 87 } // namespace logging
|
| /external/chromium_org/build/ |
| landmines.py | 19 import logging namespace 106 logging.basicConfig( 107 level=logging.DEBUG if options.verbose else logging.ERROR)
|