| /external/chromium/googleurl/base/ |
| logging.cc | 36 #include "base/logging.h" 38 namespace logging { namespace 78 // Called by logging functions to ensure that debug_file is initialized 135 // ignore file options if logging is only to system 364 } // namespace logging
|
| logging.h | 25 // process from the main application. When the logging system needs to display 35 // If DebugMessage.exe is not found, the logging code will use a normal 42 // Make a bunch of macros for logging. The way to log things is to stream 47 // You can also do conditional logging: 55 // There are also "debug mode" logging macros like the ones above: 61 // All "debug mode" logging is compiled away to nothing for non-debug mode 80 // Very important: logging a message at the FATAL severity level causes 83 namespace logging { namespace 85 // Where to record logging output? A flat file and/or system debug log via 93 // If logging is being done from multiple threads or there can be more tha [all...] |
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/ |
| json_results_generator.py | 30 import logging namespace 157 logging.error("Local results.json file does not exist. Grabbing " 180 logging.debug("results.json was not valid JSON. Clobbering.") 184 logging.debug('Old JSON results do not exist. Starting fresh.') 195 logging.error("Archive directory is inaccessible. Not modifying " 201 logging.debug("Builder name (%s) is not in the results.json file."
|
| test_expectations.py | 34 import logging namespace 401 logging.debug('Original file: "%s"', self._path) 402 logging.debug('New file: "%s"', new_file) 415 logging.debug('No change to test: %s', line) 419 logging.info('Test removed: %s', line) 426 logging.info('Test updated: ') 427 logging.info(' old: %s', line) 428 logging.info(' new: %s', new_line) 445 logging.info('Test updated: ') 446 logging.info(' old: %s', line [all...] |
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
| mac.py | 33 import logging namespace 279 logging.warn("This port does not yet support pixel tests.")
|
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
| rebaseline_chromium_webkit_tests.py | 44 import logging namespace 129 def log_dashed_string(text, platform, logging_level=logging.INFO): 139 if logging_level == logging.ERROR: 140 logging.error(msg) 141 elif logging_level == logging.WARNING: 142 logging.warn(msg) 144 logging.info(msg) 166 logging.info('Html directory: "%s"', html_directory) 170 logging.info('Deleted file at html directory: "%s"', html_directory) 194 logging.debug(' Result file full path: "%s".', fullpath [all...] |
| run_chromium_webkit_tests.py | 49 import logging namespace 201 logging.debug("flushing stdout") 203 logging.debug("flushing stderr") 205 logging.debug("stopping http server") 207 logging.debug("stopping websocket server") 277 logging.critical("invalid chunk '%s'" % chunk_value) 634 logging.debug("Retrying %d unexpected failure(s)" % len(failures)) [all...] |
| /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
| standalone.py | 64 import logging namespace 65 import logging.handlers namespace 86 'debug': logging.DEBUG, 87 'info': logging.INFO, 88 'warn': logging.WARN, 89 'error': logging.ERROR, 90 'critical': logging.CRITICAL}; 104 logging.warning('mod_pywebsocket: %s' % warning) 199 logging.error( 233 logging.warning('mod_pywebsocket: %s' % warning [all...] |
| /libcore/luni/src/main/java/java/util/logging/ |
| Handler.java | 18 package java.util.logging; 26 * A {@code Handler} object accepts a logging request and exports the desired 28 * disabled by setting its logging level to {@code Level.OFF}. 34 // the error manager to report errors during logging 40 // the logging level 54 * {@code ErrorManager}, the default encoding, and the default logging 176 * Accepts a logging request and sends it to the the target. 195 * logging. 217 * Gets the formatter used by this handler to format the logging messages. 226 * Gets the logging level of this handler, records with levels lower tha [all...] |
| LogManager.java | 18 package java.util.logging; 43 * logging framework, and to manage a hierarchical namespace of all named 52 * java.util.logging.manager system property, if the property is unavailable or 53 * invalid, the default class {@link java.util.logging.LogManager} will 57 * properties file, which by default is the "lib/logging.properties" in the JRE 63 * <li>"java.util.logging.config.class"</li> 64 * <li>"java.util.logging.config.file"</li> 71 * The "java.util.logging.config.class" should specifies a class name. If it is 77 * If "java.util.logging.config.class" property is not set, or it is invalid, or 79 * "java.util.logging.config.file" system property can be used to specify [all...] |
| LogRecord.java | 18 package java.util.logging; 28 * A {@code LogRecord} object represents a logging request. It is passed between 29 * the logging framework and individual logging handlers. Client applications 31 * logging framework. 62 * The logging level. 76 * The name of the class that issued the logging call. 83 * The name of the method that issued the logging call. 97 * The ID of the thread that issued the logging call. 141 * Constructs a {@code LogRecord} object using the supplied the logging [all...] |
| FileHandler.java | 18 package java.util.logging; 33 * A {@code FileHandler} writes logging records into a specified file or a 51 * <li>java.util.logging.FileHandler.append specifies whether this 54 * <li>java.util.logging.FileHandler.count specifies how many output files to 56 * <li>java.util.logging.FileHandler.filter specifies the {@code Filter} class 58 * <li>java.util.logging.FileHandler.formatter specifies the {@code Formatter} 59 * class, defaults to {@code java.util.logging.XMLFormatter}.</li> 60 * <li>java.util.logging.FileHandler.encoding specifies the character set 62 * <li>java.util.logging.FileHandler.level specifies the level for this 64 * <li>java.util.logging.FileHandler.limit specifies the maximum number o [all...] |
| Logger.java | 18 package java.util.logging; 50 * <p>Developers should use named loggers to enable logging to be controlled on a 71 * source method. In these cases, the logging framework will automatically infer 74 * Once a {@code LogRecord} object has been passed into the logging framework, 75 * it is owned by the logging framework and the client applications should not 126 /** The logging level of this logger, or null if none is set. */ 130 * The effective logging level of this logger. In order of preference this 134 * <li>the logging level of the parent 144 * The resource bundle used to localize logging messages. If null, no 174 /** the tag used for optimized logging. Derived from the logger name. * [all...] |
| /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
| AbstractSessionContext.java | 32 import java.util.logging.Level; 284 java.util.logging.Logger.global.log(Level.WARNING,
|
| /packages/apps/Email/src/com/android/exchange/adapter/ |
| Serializer.java | 40 private boolean logging = false; // DO NOT CHECK IN WITH THIS TRUE! field in class:Serializer 63 logging = _logging; 71 //logging = Eas.PARSER_LOG; 119 if (logging) { 139 if (logging) { 179 if (logging) { 198 if (logging) {
|
| Parser.java | 51 private boolean logging = false; field in class:Parser 149 logging = Eas.PARSER_LOG; 159 logging = val; 163 * Set the tag used for logging. When debugging is on, every token is logged (Log.v) to 166 * @param val the logging tag 207 if (logging) { 393 if (logging) { 409 if (logging) { 423 if (logging) {
|
| /external/apache-http/src/org/apache/commons/logging/impl/ |
| SimpleLog.java | 18 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> - 44 * Logging detail level for a SimpleLog instance named "xxxxx". 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> [all...] |
| LogFactoryImpl.java | 17 package org.apache.commons.logging.impl; 28 import org.apache.commons.logging.Log; 29 import org.apache.commons.logging.LogConfigurationException; 30 import org.apache.commons.logging.LogFactory; 35 * following algorithm to dynamically select a logging implementation 39 * <code>org.apache.commons.logging.Log</code> to identify the 41 * <li>Use the <code>org.apache.commons.logging.Log</code> system property 44 * <code>org.apache.commons.logging.impl.Log4JLogger</code>.</li> 46 * <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li> 48 * <code>org.apache.commons.logging.impl.SimpleLog</code>.</li [all...] |
| /external/chromium/base/ |
| logging.cc | 5 #include "base/logging.h" 54 namespace logging { namespace 112 // LockImpl directly instead of using Lock, because Lock makes logging calls. 179 // Called by logging functions to ensure that debug_file is initialized 272 // ignore file options if logging is disabled or only to system 727 } // namespace logging
|
| logging.h | 25 // process from the main application. When the logging system needs to display 35 // If DebugMessage.exe is not found, the logging code will use a normal 42 // Make a bunch of macros for logging. The way to log things is to stream 47 // You can also do conditional logging: 59 // There are also "debug mode" logging macros like the ones above: 65 // All "debug mode" logging is compiled away to nothing for non-debug mode 94 // Very important: logging a message at the FATAL severity level causes 104 namespace logging { namespace 106 // Where to record logging output? A flat file and/or system debug log via 116 // If logging is being done from multiple threads or there can be more tha [all...] |
| /external/emma/core/java12/com/vladium/logging/ |
| Logger.java | 9 package com.vladium.logging; 28 * A simple Java version-independent logging framework. Each Logger is also 30 * logging verbosity level etc. In general, a Logger is looked up as an 32 * logging configurations in a way that seems difficult with log4j.<P> 36 * threads that are guaranteed to share the same logging context). [This is 123 * A quick method to determine if logging is enabled at a given level. 125 * log() or convenience logging methods directly incurs significant
|
| /external/sonivox/jet_tools/JetCreator/ |
| JetUtils.py | 29 import logging
namespace 536 logging.debug(segment.filename)
544 logging.debug(test_jet_file.config.filename)
575 __orig_getLogger = logging.getLogger
576 setattr(logging, 'getLogger', release_getLogger)
582 setattr(logging, 'getLogger', __orig_getLogger)
|
| JetFile.py | 25 import logging
namespace 135 logging.debug('ExtractEvents: No change')
167 logging.debug('Syncing clip at %d ticks' % event.ticks)
177 # logging.info(evt)
194 logging.debug('Adding trigger event for clip %d @ %s and %s' % (jet_event.event_id, jet_event.event_start, jet_event.event_end))
221 logging.debug('Adding end marker at %s' % jet_event.event_start)
239 logging.debug('Adding application controller at %s' % jet_event.event_start)
266 logging.debug('[%s]' % section)
268 logging.debug('%s: %s' % (option, value))
429 logging.debug('Writing segment %d' % seg_num) [all...] |
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldLogManagerTest.java | 18 package libcore.java.util.logging; 25 import java.util.logging.Handler; 26 import java.util.logging.LogManager; 27 import java.util.logging.LogRecord; 28 import java.util.logging.Logger; 51 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log"); 52 props.put("java.util.logging.FileHandler.limit", "50000"); 53 props.put("java.util.logging.FileHandler.count", "5"); 54 props.put("java.util.logging.FileHandler.formatter", "java.util.logging.XMLFormatter") [all...] |
| OldFileHandlerTest.java | 18 package libcore.java.util.logging; 29 import java.util.logging.FileHandler; 30 import java.util.logging.Filter; 31 import java.util.logging.Formatter; 32 import java.util.logging.Handler; 33 import java.util.logging.Level; 34 import java.util.logging.LogManager; 35 import java.util.logging.LogRecord; 55 props.put("java.util.logging.FileHandler.level", "FINE"); 56 props.put("java.util.logging.FileHandler.filter", classNam [all...] |