HomeSort by relevance Sort by last modified time
    Searched defs:log (Results 126 - 150 of 963) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
KernelAdapter.java 68 static Logger log = Logger.getLogger(KernelAdapter.class.getName()); field in class:KernelAdapter
121 // retrieve them. For now we'll just log it. FIXME
122 log.log( Level.SEVERE, "Unhandled error, endpoint:" + p + ", context:" + context, e );
139 log.log( Level.FINE, "Buffers size:{0}", messageBuffers.size() );
180 log.log( Level.WARNING, "Recieved message from unconnected endpoint:" + p + " message:" + m );
223 // Log some additional information about the packet.
229 log.log( Level.INFO, "First 10 bytes of incomplete nessage:" + sb );
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ObjectDescriptorFactory.java 123 protected static Logger log = Logger.getLogger(ObjectDescriptorFactory.class.getName()); field in class:ObjectDescriptorFactory
168 // log.warning("Found illegal tag 0x00! objectTypeIndication " + Integer.toHexString(objectTypeIndication) +
175 log.warning("No ObjectDescriptor found for objectTypeIndication " + Integer.toHexString(objectTypeIndication) +
182 log.log(Level.SEVERE, "Couldn't instantiate BaseDescriptor class " + aClass + " for objectTypeIndication " + objectTypeIndication + " and tag " + tag, e);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
UdpKernel.java 56 static Logger log = Logger.getLogger(UdpKernel.class.getName()); field in class:UdpKernel
169 log.log( Level.INFO, "Closing endpoint:{0}.", p );
170 log.log( Level.FINE, "Socket endpoints size:{0}", socketEndpoints.size() );
257 log.log( Level.INFO, "Hosting UDP connection:{0}.", address );
274 log.log( Level.INFO, "Kernel started for connection:{0}.", address );
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 61 protected static final Logger log = Logger.getLogger(Serializer.class.getName()); field in class:Serializer
201 log.log( Level.INFO, "Registered class[" + classId + "]:{0}.", cls );
273 log.log( Level.INFO, "Registered class[" + id + "]:{0} to:" + serializer, cls );
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 41 protected static final Logger LOG = Logger.getLogger(ReportExporter.class.getName());
54 LOG.log(Level.WARNING, "External storage is not writable.");
62 LOG.log(Level.WARNING, "Couldn't create test results report", e);
77 LOG.log(Level.WARNING, "I/O exception writing report to storage.", e);
85 LOG.log(Level.WARNING, "I/O exception closing report.", e);
  /external/android-mock/src/com/google/android/testing/mocking/
ProcessorLogger.java 85 File log = new File(logFileName); local
86 if (!log.exists() && log.getParentFile() != null) {
87 log.getParentFile().mkdirs();
89 return new FileOutputStream(log, true);
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 118 from distutils import log namespace
120 log.warn("""
136 log.warn("Downloading %s", url)
setup.py 12 from distutils import log namespace
47 log.info("removing '%s'", filePath)
50 log.warn(
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 27 * <p>Factory for creating {@link Log} instances. Applications should call
29 * of the configured {@link Log} implementation class.</p>
45 * <code>org.apache.commons.logging.log</code> to the name of the
46 * <code>org.apache.commons.logging.Log</code> implementation class
69 /** Constructor for current log class */
100 // Set the default Log implementation
103 name = System.getProperty("org.apache.commons.logging.log");
105 name = System.getProperty("org.apache.commons.logging.Log");
157 * Set the log implementation/log implementation factor
195 Log log = (Log) (logs.get(name)); local
236 Log log = null; local
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 40 import org.apache.commons.logging.Log;
72 private final Log log = LogFactory.getLog(getClass()); field in class:RequestAddCookies
91 this.log.info("Cookie store not available in HTTP context");
99 this.log.info("CookieSpec registry not available in HTTP context");
118 if (this.log.isDebugEnabled()) {
119 this.log.debug("CookieSpec selected: " + policy);
154 if (this.log.isDebugEnabled()) {
155 this.log.debug("Cookie " + cookie + " match " + cookieOrigin);
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 40 import org.apache.commons.logging.Log;
60 private final Log log = LogFactory.getLog(getClass()); field in class:AbstractAuthenticationHandler
126 if (this.log.isDebugEnabled()) {
127 this.log.debug("Authentication schemes in the order of preference: "
137 if (this.log.isDebugEnabled()) {
138 this.log.debug(id + " authentication scheme selected");
144 if (this.log.isWarnEnabled()) {
145 this.log.warn("Authentication scheme " + id + " not supported");
150 if (this.log.isDebugEnabled())
    [all...]
ClientParamsStack.java 35 import org.apache.commons.logging.Log;
80 private final Log log = LogFactory.getLog(getClass()); field in class:ClientParamsStack
218 if (this.log.isDebugEnabled()) {
219 this.log.debug("'" + name + "': " + result);
DefaultRedirectHandler.java 37 import org.apache.commons.logging.Log;
67 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultRedirectHandler
108 if (this.log.isDebugEnabled()) {
109 this.log.debug("Redirect requested to location '" + location + "'");
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 39 import org.apache.commons.logging.Log;
74 private final Log log = LogFactory.getLog(getClass()); field in class:SingleClientConnManager
214 if (log.isDebugEnabled()) {
215 log.debug("Get connection for route " + route);
246 log.debug("Problem shutting down connection.", iox);
262 log.debug("Problem tagging socket.", iox);
282 if (log.isDebugEnabled()) {
283 log.debug("Releasing connection " + conn);
309 if (log.isDebugEnabled())
    [all...]
Wire.java 36 import org.apache.commons.logging.Log;
39 * Logs data to the wire LOG.
47 private final Log log; field in class:Wire
49 public Wire(Log log) {
50 this.log = log;
64 log.debug(buffer.toString());
78 log.debug(buffer.toString())
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java 38 import org.apache.commons.logging.Log;
71 private final Log log = LogFactory.getLog(getClass()); field in class:ThreadSafeClientConnManager
171 if (log.isDebugEnabled()) {
172 log.debug("ThreadSafeClientConnManager.getConnection: "
186 log.debug("Problem tagging socket.", iox);
224 if (log.isDebugEnabled()) {
225 log.debug
239 //@@@ log as warning? let pass?
240 if (log.isDebugEnabled()
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
desktop_notifications_unittest.h 64 static void log(const std::string& message) { function in class:chromeos::DesktopNotificationsTest
  /external/chromium/chrome/browser/net/
passive_log_collector_unittest.cc 210 PassiveLogCollector log; local
212 EXPECT_EQ(0u, GetLiveSources(log.url_request_tracker_).size());
213 EXPECT_EQ(0u, GetLiveSources(log.http_stream_job_tracker_).size());
220 log.OnAddEntry(NetLog::TYPE_HTTP_STREAM_JOB,
226 EXPECT_EQ(0u, GetLiveSources(log.url_request_tracker_).size());
227 EXPECT_EQ(1u, GetLiveSources(log.http_stream_job_tracker_).size());
230 log.OnAddEntry(NetLog::TYPE_REQUEST_ALIVE,
238 ASSERT_EQ(1u, GetLiveSources(log.url_request_tracker_).size());
241 GetLiveSources(log.url_request_tracker_)[0];
245 ASSERT_EQ(1u, GetLiveSources(log.http_stream_job_tracker_).size())
360 PassiveLogCollector log; local
444 PassiveLogCollector log; local
    [all...]
  /external/chromium/chrome/browser/notifications/
desktop_notifications_unittest.h 75 static void log(const std::string& message) { function in class:DesktopNotificationsTest
  /external/chromium/net/proxy/
proxy_resolver_js_bindings_unittest.cc 300 // Attach a capturing NetLog as the current request's log stream.
301 CapturingNetLog log(CapturingNetLog::kUnbounded);
302 BoundNetLog bound_log(NetLog::Source(NetLog::SOURCE_NONE, 0), &log); local
308 log.GetEntries(&entries);
316 log.GetEntries(&entries);
325 log.GetEntries(&entries);
334 log.GetEntries(&entries);
343 log.GetEntries(&entries);
357 log.GetEntries(&entries);
363 // We also emit errors to the top-level log stream
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 44 /** \deprecated ArrayBase::log() */
47 Cwise<ExpressionType>::log() const function in class:Eigen::Cwise
118 /** \deprecated ArrayBase::log() */
  /external/emma/ant/ant14/com/vladium/emma/
emmaTask.java 44 log (IAppConstants.APP_VERBOSE_BUILD_ID, Project.MSG_VERBOSE); method
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/dh/
DhExchange.java 11 import ch.ethz.ssh2.log.Logger;
20 private static final Logger log = Logger.getLogger(DhExchange.class); field in class:DhExchange
130 if (log.isInfoEnabled())
132 log.info("Client: '" + StringEncoder.GetString(clientversion) + "'");
133 log.info("Server: '" + StringEncoder.GetString(serverversion) + "'");
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 152 logger.log(Level.WARNING, this.getName() + "run() exception ", e);
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 82 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);

Completed in 1863 milliseconds

1 2 3 4 56 7 8 91011>>