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

1 23 4 5 6 7 8

  /libcore/luni/src/main/java/java/util/logging/
Formatter.java 18 package java.util.logging;
SimpleFormatter.java 18 package java.util.logging;
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLevelTest.java 18 package libcore.java.util.logging;
21 import java.util.logging.Level;
27 String bundleName = "bundles/java/util/logging/res";
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;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FormatterTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
23 import java.util.logging.Formatter;
24 import java.util.logging.Level;
25 import java.util.logging.LogRecord;
92 .getBundle("bundles/java/util/logging/res");
110 rb = ResourceBundle.getBundle("bundles/java/util/logging/res",
122 r.setResourceBundleName("bundles/java/util/logging/res");
  /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...]
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...]
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 18 package org.apache.commons.logging.impl;
22 import org.apache.commons.logging.Log;
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
  /external/chromium/base/
logging_unittest.cc 6 #include "base/logging.h"
11 namespace logging { namespace
250 } // namespace logging
vlog.cc 8 #include "base/logging.h"
12 namespace logging { namespace
83 // number of dependencies the logging system has.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 14 import logging namespace
65 logging.debug('Requesting %s' % url)
68 logging.debug('Got response code %s, content %s' % (resp, content))
87 logging.debug('Attempting to JSON parse: %s' % response_text)
89 logging.debug('Got license server response: %s' % json)
91 logging.exception('Could not parse response as JSON: %s' % response_text)
95 logging.exception('Could not fetch license data')
  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.cc 31 #include "talk/base/logging.h"
275 LoggingAdapter* logging = recycle_bin_.front(); local
277 logging->set_label(ss.str());
278 logging->Attach(stream);
279 return logging;
285 LoggingAdapter* logging = static_cast<LoggingAdapter*>(stream); local
286 pool_->ReturnConnectedStream(logging->Detach());
287 recycle_bin_.push_back(logging);
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 25 import logging namespace
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 31 import logging namespace
34 _log = logging.getLogger("webkitpy.common.checkout.diff_parser")
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
worker.py 31 import logging namespace
41 _log = logging.getLogger(__name__)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_lock.py 32 import logging namespace
43 _log = logging.getLogger("webkitpy.layout_tests.port.http_lock")
http_server.py 35 import logging namespace
48 _log = logging.getLogger("webkitpy.layout_tests.port.http_server")
qt.py 31 import logging namespace
40 _log = logging.getLogger("webkitpy.layout_tests.port.qt")
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests.py 29 import logging namespace
36 _log = logging.getLogger("webkitpy.layout_tests."
110 """Configures the logging system."""
113 log_level = logging.INFO
117 log_level = logging.DEBUG
118 logging.basicConfig(level=log_level, format=log_fmt,
128 help='include debug-level logging')
  /external/webkit/Tools/TestResultServer/model/
datastorefile.py 30 import logging namespace
79 logging.warning("No data to save.")
83 logging.error("File too big, can't save to datastore: %dK",
102 logging.warning("Found key, but no data entry: %s", key)
111 logging.error("Failed to save data store entry: %s", err)
116 logging.info("Data saved: %s.", data_entry.key())
135 logging.warning("No data to load.")
140 logging.info("Loading data for key: %s.", key)
143 logging.error("No data found for key: %s.", key)
  /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...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
Logger.java 17 package com.example.android.voicemail.common.logging;
22 * Simplifies usage of Android logging class {@link Log} by abstracting the TAG field that is
23 * required to be passed to every logging method. Also, allows automatic insertion of the owner
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 7 import logging namespace
65 logging.info("Cache miss: " + path)
72 logging.info("Path: " + self.request.path)
73 logging.info("Url: " + url)
77 logging.error("urlfetch failed: " + url)
80 logging.error("urlfetch failed: " + url)
84 logging.error("Memcache set failed.")
86 logging.error("Memcache set failed.")
171 logging.error("urlfetch failed.")
176 logging.error("Version number not found: " + result.content
    [all...]
  /external/emma/core/java12/com/vladium/logging/
ILogLevels.java 9 package com.vladium.logging;
47 /** setting log level to NONE disables all logging */

Completed in 1508 milliseconds

1 23 4 5 6 7 8