Searched defs:logging (Results 1 - 25 of 43) sorted by relevance

12

/external/apache-http/src/org/apache/commons/logging/
H A DLogConfigurationException.java17 package org.apache.commons.logging;
H A DLog.java18 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
69 * <p> Is debug logging currently enabled? </p>
81 * <p> Is error logging currently enabled? </p>
93 * <p> Is fatal logging currentl
[all...]
H A DLogSource.java17 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 */
90 if ((null != Class.forName("java.util.logging.Logger")) &&
91 (null != Class.forName("org.apache.commons.logging
[all...]
H A DLogFactory.java17 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/chromium/base/
H A Dlogging_win.h11 #include "base/logging.h"
13 namespace logging { namespace
53 logging::LogSeverity old_log_level_;
58 } // namespace logging
H A Dlogging_win.cc14 static logging::LogEventProvider* New() {
17 logging::LogEventProvider* ptr =
18 reinterpret_cast<logging::LogEventProvider*>(buffer_);
20 new(ptr) logging::LogEventProvider();
24 static void Delete(logging::LogEventProvider* p) {
27 p->logging::LogEventProvider::~LogEventProvider();
33 static const size_t kBufferSize = (sizeof(logging::LogEventProvider) +
44 Singleton<logging::LogEventProvider, LogEventProviderTraits> log_provider;
48 namespace logging { namespace
76 // Bail if we're not logging, no
[all...]
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_server_base.py32 import logging namespace
66 logging.debug("Server running at %s" % url)
68 logging.debug("Server NOT running at %s" % url)
H A Dapache_http_server.py32 import logging namespace
191 logging.debug(err)
200 logging.debug("Starting apache http server")
203 logging.debug("Apache started. Testing ports")
208 logging.debug("Server successfully started")
214 logging.debug("Shutting down any running http servers")
H A Dhttp_server.py33 import logging namespace
207 logging.debug('Starting http server')
219 logging.debug("Server successfully started")
H A Dwebsocket_server.py33 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))
H A Dchromium.py32 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
[all...]
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
H A Dfuzzy_image_diff.py35 import logging namespace
58 logging.debug('Using %s' % expected_png_file)
H A Dimage_diff.py38 import logging namespace
136 logging.debug('Using %s' % expected_hash_file)
137 logging.debug('Using %s' % expected_png_file)
H A Dtext_diff.py37 import logging namespace
66 logging.debug('Using %s' % expected_filename)
H A Dtest_type_base.py37 import logging namespace
112 logging.debug('writing new baseline to "%s"' % (output_path))
/external/webkit/WebKitTools/Scripts/webkitpy/
H A Ddiff_parser.py31 import logging namespace
141 logging.error('Unexpected line change without file path declaration: %r' % line)
162 logging.error('Unexpected diff format when parsing a chunk: %r' % line)
H A Dautoinstall.py154 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/
H A Djson_layout_results_generator.py30 import logging namespace
H A Dtest_shell_thread.py39 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
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetSegGraph.py25 import logging namespace
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java18 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
[all...]
H A DNoOpLog.java18 package org.apache.commons.logging.impl;
22 import org.apache.commons.logging.Log;
H A DSimpleLog.java18 package org.apache.commons.logging.impl;
31 import org.apache.commons.logging.Log;
32 import org.apache.commons.logging.LogConfigurationException;
39 * <li><code>org.apache.commons.logging.simplelog.defaultlog</code> -
40 * Default logging detail level for all instances of SimpleLog.
43 * <li><code>org.apache.commons.logging.simplelog.log.xxxxx</code> -
46 * If not specified, the default logging detail level is used.</li>
47 * <li><code>org.apache.commons.logging.simplelog.showlogname</code> -
50 * <li><code>org.apache.commons.logging.simplelog.showShortLogname</code> -
53 * <li><code>org.apache.commons.logging
[all...]
H A DWeakHashtable.java18 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
/external/emma/core/java12/com/vladium/logging/
H A DILogLevels.java9 package com.vladium.logging;
47 /** setting log level to NONE disables all logging */

Completed in 453 milliseconds

12