Searched defs:log (Results 1 - 25 of 613) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DAntlr3ErrorLog.java45 private Log log; field in class:Antlr3ErrorLog
51 * @param log The Maven Error Log
53 public Antlr3ErrorLog(Log log) { argument
54 this.log = log;
58 * Sends an informational message to the Maven log sink.
62 log.info(message);
71 log.error(message.toString());
75 * Sends a warning message to the Maven log sink.
80 log
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... org.dom4j.Element) private void handleFailures () public void log (java.lang.String) public static void main (java ...
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py863 def log(self, msg): member in class:DebugEventSocketProxy
875 self.log("Waiting for incoming connection on port %d" % self.port)
879 self.log("Accepted connection from %s:%d" % addr)
894 self.log("> %s" % msg)
901 self.log("< %s" % t.rstrip())
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py118 from distutils import log namespace
120 log.warn("""
136 log.warn("Downloading %s", url)
H A Dsetup.py12 from distutils import log namespace
47 log.info("removing '%s'", filePath)
50 log.warn(
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb29 @log = options[ :log ]
34 def log!( message, *interpolation_arguments )
35 @log and @log.printf( message, *interpolation_arguments )
45 log!( "waiting for incoming connection on port %i\n", @port )
49 log!( "Accepted connection from %s:%s\n", host, port )
57 log!( "handshake failed due to an IOError:\n" )
58 log!( " %s: %s", error.class, error.message )
59 log!( " Backtrac
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogRecordTest.java142 logger.log(Level.SEVERE, MSG);
149 logger.log(lr);
156 logger.log(lr);
164 logger.log(lr);
170 logger.log(RecordFactory.getDefaultRecord());
177 RecordFactory.log(logger, lr);
180 assertEquals("log", handler.getSourceMethodName());
186 RecordFactory.log(logger, lr);
200 ml.log(Level.SEVERE, MSG);
399 public static void log(Logge method in class:LogRecordTest.RecordFactory
414 public void log(Level l, String s) { method in class:LogRecordTest.MockLogger
422 public void log(LogRecord record) { method in class:LogRecordTest.MockLogger
[all...]
H A DLoggerTest.java79 * Reset the log manager.
245 Logger log = Logger.getLogger("testGetLogger_Normal_ANewLogger");
247 assertSame(log, Logger.getLogger("testGetLogger_Normal_ANewLogger"));
249 assertSame(log, LogManager.getLogManager().getLogger(
252 assertNull(log.getFilter());
253 assertEquals(0, log.getHandlers().length);
255 assertSame(Level.ALL, log.getLevel());
256 assertEquals("testGetLogger_Normal_ANewLogger", log.getName());
257 assertNull(log.getParent().getParent());
258 assertNull(log
3055 public void log(LogRecord record) { method in class:LoggerTest.MockParentLogger
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java1129 * The print stream used for debug log. If it is null debug info will
1135 * Prints log message.
1137 public synchronized void log(String message) { method in class:HttpsURLConnectionTest.Work
1237 log("Client connection ACCEPTED");
1246 log("==========================================");
1247 log("Use established connection for " + (it + 1)
1253 log("Got request:\n" + message);
1254 log("------------------");
1260 log("try to read client data");
1263 log("clien
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java87 private void log( Level level, String msg, Throwable ex ) { method in class:Jdk14Logger
114 * @param message to log
118 log(Level.FINE, String.valueOf(message), null);
125 * @param message to log
126 * @param exception log this cause
130 log(Level.FINE, String.valueOf(message), exception);
137 * @param message to log
141 log(Level.SEVERE, String.valueOf(message), null);
148 * @param message to log
149 * @param exception log thi
[all...]
H A DSimpleLog.java35 * <p>Simple implementation of Log that sends all enabled log messages,
43 * <li><code>org.apache.commons.logging.simplelog.log.xxxxx</code> -
96 /** Include the instance name in the log message? */
98 /** Include the short name ( last component ) of the logger in the log
103 /** Include the current time in the log message */
105 /** The date and time format to use in the log message */
189 /** The name of this simple log instance */
191 /** The current log level */
193 /** The short name of this simple log instance */
200 * Construct a simple log wit
282 protected void log(int type, Object message, Throwable t) { method in class:SimpleLog
[all...]
/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestAddCookies.java77 private final Log log = LogFactory.getLog(getClass()); field in class:RequestAddCookies
96 this.log.info("Cookie store not available in HTTP context");
104 this.log.info("CookieSpec registry not available in HTTP context");
123 if (this.log.isDebugEnabled()) {
124 this.log.debug("CookieSpec selected: " + policy);
159 if (this.log.isDebugEnabled()) {
160 this.log.debug("Cookie " + cookie + " match " + cookieOrigin);
H A DRequestProxyAuthentication.java62 private final Log log = LogFactory.getLog(getClass()); field in class:RequestProxyAuthentication
95 this.log.debug("User credentials not available");
102 if (this.log.isErrorEnabled()) {
103 this.log.error("Proxy authentication error: " + ex.getMessage());
H A DRequestTargetAuthentication.java62 private final Log log = LogFactory.getLog(getClass()); field in class:RequestTargetAuthentication
95 this.log.debug("User credentials not available");
103 if (this.log.isErrorEnabled()) {
104 this.log.error("Authentication error: " + ex.getMessage());
H A DResponseProcessCookies.java69 private final Log log = LogFactory.getLog(getClass()); field in class:ResponseProcessCookies
88 this.log.info("Cookie store not available in HTTP context");
95 this.log.info("CookieSpec not available in HTTP context");
102 this.log.info("CookieOrigin not available in HTTP context");
131 if (this.log.isDebugEnabled()) {
133 this.log.debug("Cookie accepted: \""
138 if (this.log.isWarnEnabled()) {
140 this.log.warn("Cookie rejected: \""
147 if (this.log.isWarnEnabled()) {
148 this.log
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DAbstractAuthenticationHandler.java65 private final Log log = LogFactory.getLog(getClass()); field in class:AbstractAuthenticationHandler
131 if (this.log.isDebugEnabled()) {
132 this.log.debug("Authentication schemes in the order of preference: "
142 if (this.log.isDebugEnabled()) {
143 this.log.debug(id + " authentication scheme selected");
149 if (this.log.isWarnEnabled()) {
150 this.log.warn("Authentication scheme " + id + " not supported");
155 if (this.log.isDebugEnabled()) {
156 this.log.debug("Challenge for " + id + " authentication scheme not available");
H A DAbstractHttpClient.java89 private final Log log = LogFactory.getLog(getClass()); field in class:AbstractHttpClient
671 this.log.warn("Error consuming content after an exception.", t2);
H A DClientParamsStack.java85 private final Log log = LogFactory.getLog(getClass()); field in class:ClientParamsStack
223 if (this.log.isDebugEnabled()) {
224 this.log.debug("'" + name + "': " + result);
H A DDefaultRedirectHandler.java72 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultRedirectHandler
113 if (this.log.isDebugEnabled()) {
114 this.log.debug("Redirect requested to location '" + location + "'");
H A DDefaultRequestDirector.java117 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultRequestDirector
340 this.log.debug("Stale connection check");
342 this.log.debug("Stale connection detected");
377 if (this.log.isDebugEnabled()) {
378 this.log.debug(ex.getMessage());
430 if (this.log.isDebugEnabled()) {
431 this.log.debug("Attempt " + execCount + " to execute request");
437 this.log.debug("Closing the connection.");
440 if (this.log.isInfoEnabled()) {
441 this.log
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnection.java74 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultClientConnection
152 log.debug("Connection shut down");
165 log.debug("Connection closed");
H A DIdleConnectionHandler.java59 private final Log log = LogFactory.getLog(getClass()); field in class:IdleConnectionHandler
82 if (log.isDebugEnabled()) {
83 log.debug("Adding connection at: " + timeAdded);
100 log.warn("Removing a connection that never existed!");
125 if (log.isDebugEnabled()) {
126 log.debug("Checking for connections, idleTimeout: " + idleTimeout);
137 if (log.isDebugEnabled()) {
138 log.debug("Closing connection, connection time: " + connectionTime);
144 log.debug("I/O error closing connection", ex);
153 if (log
[all...]
H A DSingleClientConnManager.java79 private final Log log = LogFactory.getLog(getClass()); field in class:SingleClientConnManager
219 if (log.isDebugEnabled()) {
220 log.debug("Get connection for route " + route);
251 log.debug("Problem shutting down connection.", iox);
267 log.debug("Problem tagging socket.", iox);
287 if (log.isDebugEnabled()) {
288 log.debug("Releasing connection " + conn);
314 if (log.isDebugEnabled()) {
315 log.debug
325 //@@@ log a
[all...]
H A DWire.java52 private final Log log; field in class:Wire
54 public Wire(Log log) { argument
55 this.log = log;
69 log.debug(buffer.toString());
83 log.debug(buffer.toString());
89 return log.isDebugEnabled();

Completed in 4679 milliseconds

1234567891011>>