HomeSort by relevance Sort by last modified time
    Searched defs:logging (Results 26 - 50 of 97) sorted by null

12 3 4

  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
http_server.py 33 import logging namespace
207 logging.debug('Starting http server')
219 logging.debug("Server successfully started")
websocket_server.py 33 import logging namespace
129 logging.info('No need to start %s server.' % self._server_name)
168 logging.debug('Using handler_map_file: %s' % handler_map_file)
172 logging.warning('No handler_map_file found')
194 logging.debug('Starting %s server on %d.' % (
196 logging.debug('cmdline: %s' % ' '.join(start_cmd))
213 logging.error(line)
244 logging.debug('Shutting down %s server %d.' % (self._server_name, pid))
chromium.py 32 import logging namespace
62 logging.error("Aborting because system dependencies check "
64 logging.error("To override, invoke with --nocheck-sys-deps")
67 logging.error('test driver is not found at %s' %
74 logging.error('image diff not found at %s' % image_diff_path)
75 logging.error("To override, invoke with --no-pixel-tests")
114 logging.debug("Starting layout helper %s" % helper_path)
119 logging.error("layout_test_helper failed to be ready")
123 logging.debug("Stopping layout test helper")
230 logging.fatal("Test got out of sync:\n|%s|\n|%s|"
    [all...]
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 17 package com.android.internal.logging;
25 import java.util.logging.Formatter;
26 import java.util.logging.Handler;
27 import java.util.logging.Level;
28 import java.util.logging.LogRecord;
29 import java.util.logging.Logger;
32 * Implements a {@link java.util.logging.Logger} handler that writes to the Android log. The
135 Log.e("AndroidHandler", "Error logging message.", e);
149 Log.e("AndroidHandler", "Error logging message.", e);
154 * Converts a {@link java.util.logging.Logger} logging level into an Android one
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFormatterTest.java 18 package libcore.java.util.logging;
20 import java.util.logging.FileHandler;
21 import java.util.logging.Formatter;
22 import java.util.logging.Level;
23 import java.util.logging.LogRecord;
OldErrorManagerTest.java 18 package libcore.java.util.logging;
22 import java.util.logging.ErrorManager;
OldXMLFormatterTest.java 18 package libcore.java.util.logging;
21 import java.util.logging.Handler;
22 import java.util.logging.Level;
23 import java.util.logging.LogRecord;
24 import java.util.logging.XMLFormatter;
OldLogRecordTest.java 18 package libcore.java.util.logging;
20 import java.util.logging.Level;
21 import java.util.logging.LogRecord;
OldMemoryHandlerTest.java 18 package libcore.java.util.logging;
25 import java.util.logging.Filter;
26 import java.util.logging.Handler;
27 import java.util.logging.Level;
28 import java.util.logging.LogManager;
29 import java.util.logging.LogRecord;
30 import java.util.logging.MemoryHandler;
61 props.put("java.util.logging.MemoryHandler.level", "FINE");
62 props.put("java.util.logging.MemoryHandler.filter", baseClassName + "$MockFilter");
63 props.put("java.util.logging.MemoryHandler.size", "2")
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 17 package org.apache.commons.logging;
23 import org.apache.commons.logging.impl.NoOpLog;
35 * <code>org.apache.commons.logging.impl.Log4JLogger</code>.</li>
37 * <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li>
39 * <code>org.apache.commons.logging.impl.NoOpLog</code>.</li>
45 * <code>org.apache.commons.logging.log</code> to the name of the
46 * <code>org.apache.commons.logging.Log</code> implementation class
66 /** Is JDK 1.4 logging available */
88 // Is JDK 1.4 Logging Available?
90 if ((null != Class.forName("java.util.logging.Logger")) &
    [all...]
LogFactory.java 17 package org.apache.commons.logging;
65 * to specify whether logging classes should be loaded via the thread
71 * The name (<code>org.apache.commons.logging.LogFactory</code>) of the property
77 "org.apache.commons.logging.LogFactory";
84 "org.apache.commons.logging.impl.LogFactoryImpl";
87 * The name (<code>commons-logging.properties</code>) of the properties file to search for.
90 "commons-logging.properties";
98 "META-INF/services/org.apache.commons.logging.LogFactory";
101 * The name (<code>org.apache.commons.logging.diagnostics.dest</code>)
102 * of the property used to enable internal commons-logging
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 18 package org.apache.commons.logging.impl;
44 * to call {@link org.apache.commons.logging.LogFactory#release(ClassLoader) LogFactory.release(ClassLoader)}.
47 * <p><code>org.apache.commons.logging.LogFactory</code> checks whether this class
72 * bundles commons-logging by default. However, holding the classloader
94 * Such a situation occurs when the commons-logging.jar is
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/emma/core/java12/com/vladium/logging/
ILogLevels.java 9 package com.vladium.logging;
47 /** setting log level to NONE disables all logging */
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
test_type_base.py 37 import logging namespace
112 logging.debug('writing new baseline to "%s"' % (output_path))
  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 11 import logging namespace
76 logging.info("Line has more than one '|': " + line)
83 logging.info("Lins has non-numeric load time: " + line)
107 # Set up logging format.
108 log_level = logging.INFO
110 log_level = logging.DEBUG
111 logging.basicConfig(level=log_level,
145 logging.error("Cannot create results dir: " + bugreport_dir)
159 logging.error("failed to push url list to device.")
160 logging.error(adb_output
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
SocketHandler.java 18 package java.util.logging;
30 * <li>java.util.logging.ConsoleHandler.level specifies the logging level,
33 * <li>java.util.logging.SocketHandler.filter specifies the name of the filter
36 * <li>java.util.logging.SocketHandler.formatter specifies the name of the
38 * {@code java.util.logging.XMLFormatter} if this property is not found or has
40 * <li>java.util.logging.SocketHandler.encoding specifies the encoding this
43 * <li>java.util.logging.SocketHandler.host specifies the name of the host that
45 * <li>java.util.logging.SocketHandler.encoding specifies the port number that
60 private static final String DEFAULT_FORMATTER = "java.util.logging.XMLFormatter"
    [all...]
XMLFormatter.java 18 package java.util.logging;
28 * specified in Appendix A to the Java Logging APIs specification is used.
Level.java 18 package java.util.logging;
32 * {@code Level} objects are used to indicate the level of logging. There are a
33 * set of predefined logging levels, each associated with an integer value.
34 * Enabling a certain logging level also enables all logging levels with larger
39 * ALL and OFF. ALL indicates logging all messages, and OFF indicates logging no
49 * The OFF level provides no logging messages.
89 * The ALL level provides all logging messages.
MemoryHandler.java 18 package java.util.logging;
39 * java.util.logging.MemoryHandler.push.
45 * <li>java.util.logging.MemoryHandler.filter specifies the {@code Filter}
47 * <li>java.util.logging.MemoryHandler.level specifies the level for this
49 * <li>java.util.logging.MemoryHandler.push specifies the push level, defaults
51 * <li>java.util.logging.MemoryHandler.size specifies the buffer size in number
53 * <li>java.util.logging.MemoryHandler.target specifies the class of the target
132 initProperties("ALL", null, "java.util.logging.SimpleFormatter", null);
163 initProperties("ALL", null, "java.util.logging.SimpleFormatter", null);
StreamHandler.java 18 package java.util.logging;
33 * <li>java.util.logging.StreamHandler.encoding specifies the encoding this
36 * <li>java.util.logging.StreamHandler.filter specifies the name of the filter
39 * <li>java.util.logging.StreamHandler.formatter specifies the name of the
41 * {@code java.util.logging.SimpleFormatter}.
42 * <li>java.util.logging.StreamHandler.level specifies the logging level.
64 initProperties("INFO", null, "java.util.logging.SimpleFormatter", null);
281 * Accepts a logging request. The log record is formatted and written to the
284 * <li>the supplied log record has at least the required logging level
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 26 The logging, os, sys, db, and users modules are imported automatically.
39 import logging namespace
70 'import logging',
219 logging.info('Compiling and evaluating:\n%s' % statement)
255 logging.warning(msg + traceback.format_exc())
285 logging.debug('Storing this statement as an unpicklable.')
  /development/scripts/app_engine_server/
memcache_zipserve.py 32 import logging namespace
127 #logging.info('==========================EXCEPTION: NO LANG COOKIE FOUND, USING [%s]', langName)
128 logging.info('==========================REQ INIT name [%s] langName [%s] resetLangCookie [%s]', reqUri, langName, resetLangCookie)
146 logging.info(' Content URI is [%s]...', contentUri)
152 # logging.info(' Handling a MISMATCHED intl request')
162 # logging.info(' Request being handled as clean: [%s]', name)
175 # logging.info(' Handling an invalid intl request...')
195 # logging.info(' >>>> isCleanUrl name [%s] langName [%s] isValidIntl [%s]', name, langName, isValidIntl)
225 # logging.info('--->PREPROCESSING REDIRECT [%s] to [%s] with langName [%s]', name, uri, langName)
250 logging.info('-->>REDIRECTING %s to %s', name, uri
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
autoinstall.py 154 import logging namespace
158 _logger = logging.getLogger(__name__)
301 import logging namespace
302 #logging.basicConfig()
303 logger = logging.getLogger()
305 console = logging.StreamHandler()
306 console.setLevel(logging.DEBUG)
308 formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
313 logger.setLevel(logging.INFO)
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_shell_thread.py 39 import logging namespace
82 logging.debug("Stacktrace for %s:\n%s" % (test_info.filename, error))
90 logging.debug("Previous test output extra lines after dump:\n%s" %
245 logging.debug('%s starting' % (self.getName()))
247 logging.debug('%s done (%d tests)' % (self.getName(),
254 logging.error('%s dying: %s' % (self.getName(),
278 logging.info("Ignoring invalid batch size '%s'" %
289 logging.info('Testing canceled')
330 logging.debug("%s %s failed:\n%s" % (self.getName(),
334 logging.debug("%s %s passed" % (self.getName()
    [all...]

Completed in 919 milliseconds

12 3 4