| /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)
|
| jsonresults.py | 31 import logging namespace 100 logging.warning("No json results data.") 106 logging.debug(json_results_str) 107 logging.error("Failed to load json results: %s", str(err)) 157 logging.debug("Merging build %s, incremental json index: %d.", 164 logging.warning(("Build %d in incremental json is older than " 175 logging.warning("Duplicate build %d in incremental json", 336 logging.error("Results JSON version '%s' is not supported.", 341 logging.error("Builder '%s' is not in json results.", builder) 346 logging.error("Missing build number in json results." [all...] |
| /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
| ErrorManagerTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 22 import java.util.logging.ErrorManager; 24 import org.apache.harmony.logging.tests.java.util.logging.HandlerTest.NullOutputStream;
|
| /external/chromium/net/tools/testserver/ |
| run_testserver.cc | 10 #include "base/logging.h" 28 if (!logging::InitLogging( 30 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, 31 logging::LOCK_LOG_FILE, 32 logging::APPEND_TO_OLD_LOG_FILE, 33 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS)) { 34 printf("Error: could not initialize logging. Exiting.\n");
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldXMLFormatterTest.java | 18 package libcore.java.util.logging; 21 import java.util.logging.Handler; 22 import java.util.logging.Level; 23 import java.util.logging.LogRecord; 24 import java.util.logging.XMLFormatter;
|
| OldMemoryHandlerTest.java | 18 package libcore.java.util.logging; 25 import java.util.logging.Filter; 26 import java.util.logging.Handler; 27 import java.util.logging.Level; 28 import java.util.logging.LogManager; 29 import java.util.logging.LogRecord; 30 import java.util.logging.MemoryHandler; 61 props.put("java.util.logging.MemoryHandler.level", "FINE"); 62 props.put("java.util.logging.MemoryHandler.filter", baseClassName + "$MockFilter"); 63 props.put("java.util.logging.MemoryHandler.size", "2") [all...] |
| /external/chromium/chrome/common/ |
| logging_chrome.cc | 39 #include "base/logging.h" 80 // Assertion handler for logging errors that occur when dialogs are 104 // Suppresses error/assertion dialogs and enables the logging of 110 logging::SetLogAssertHandler(SilentRuntimeAssertHandler); 111 logging::SetLogReportHandler(SilentRuntimeReportHandler); 128 namespace logging { namespace 135 const logging::LoggingDestination kDefaultLoggingMode = 136 logging::LOG_ONLY_TO_FILE; 140 const logging::LoggingDestination kDefaultLoggingMode = 141 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG [all...] |
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
| headerparserhandler.py | 38 import logging namespace 73 class ApacheLogHandler(logging.Handler): 74 """Wrapper logging.Handler to emit log message to apache's error.log.""" 77 logging.DEBUG: apache.APLOG_DEBUG, 78 logging.INFO: apache.APLOG_INFO, 79 logging.WARNING: apache.APLOG_WARNING, 80 logging.ERROR: apache.APLOG_ERR, 81 logging.CRITICAL: apache.APLOG_CRIT, 85 logging.Handler.__init__(self) 91 self._formatter = logging.Formatter('%(name)s: %(message)s' [all...] |
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
| run_all.py | 47 import logging namespace 80 logging.basicConfig(level=logging.getLevelName(options.log_level.upper()))
|
| /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/log/ |
| Logger.java | 7 import java.util.logging.Level; 10 * Logger delegating to JRE logging. 18 private java.util.logging.Logger delegate; 27 this.delegate = java.util.logging.Logger.getLogger(x.getName());
|
| /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...] |
| /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/util/ |
| EnvironmentHelper.java | 18 package org.apache.harmony.logging.tests.java.util.logging.util;
|
| /external/guava/guava-testlib/src/com/google/common/testing/ |
| SloppyTearDown.java | 22 import java.util.logging.Level; 23 import java.util.logging.Logger;
|
| /external/webkit/Tools/Scripts/webkitpy/common/system/ |
| logutils.py | 23 """Supports webkitpy logging.""" 25 # FIXME: Move this file to webkitpy/python24 since logging needs to 28 import logging namespace 35 _log = logging.getLogger(__name__) 65 # _log = logging.getLogger(__name__) 71 """Return a logging.logger for the given path. 125 return logging.getLogger(logger_name) 129 """Return a list of the default logging handlers to use. 137 """Return whether a logging.LogRecord should be logged.""" 138 # FIXME: Enable the logging of autoinstall messages onc [all...] |
| /external/webkit/Tools/Scripts/webkitpy/style/ |
| patchreader.py | 31 import logging namespace 36 _log = logging.getLogger("webkitpy.style.patchreader")
|
| /external/ceres-solver/internal/ceres/ |
| canonical_views_clustering.h | 46 #include <glog/logging.h>
|
| /external/jmonkeyengine/engine/src/android/com/jme3/util/ |
| AndroidLogHandler.java | 4 import java.util.logging.Handler; 5 import java.util.logging.Level; 6 import java.util.logging.LogRecord; 7 import java.util.logging.Logger; 10 * Converts from Java based logging ({@link Logger} to Android based 11 * logging {@link Log}.
|
| /libcore/luni/src/main/java/java/util/logging/ |
| LoggingMXBean.java | 18 package java.util.logging; 23 * {@code LoggingMXBean} is the management interface for the logging sub-system. 34 * Gets the string value of the logging level of a logger. An empty string
|
| LoggingPermission.java | 18 package java.util.logging;
|
| /libcore/support/src/test/java/libcore/dalvik/system/ |
| CloseGuardTester.java | 24 import java.util.logging.ConsoleHandler; 25 import java.util.logging.Handler; 26 import java.util.logging.LogRecord; 27 import java.util.logging.Logger;
|
| /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/chrome/browser/sync/tools/ |
| sync_listen_notifications.cc | 11 #include "base/logging.h" 69 logging::InitLogging( 71 logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG, 72 logging::LOCK_LOG_FILE, 73 logging::DELETE_OLD_LOG_FILE, 74 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); 87 "after logging into sync to get the token to pass into this "
|
| /external/chromium/googleurl/base/ |
| 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...] |
| /development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
| web_services.py | 26 import logging namespace 70 logging.info('Authenticatng username: ' + self.username) 98 logging.info('Validating username: ' + self.username) 139 logging.info('*** Starting contact sync ***') 159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records') 166 logging.info('* Processing server changes') 176 logging.info('Client sync state: ' + client_state) 194 logging.info('New sync state: ' + high_water_mark) 215 logging.info('Server-side updates: ' + str(update_count)) 216 logging.info('Server-side deletes: ' + str(delete_count) [all...] |
| /external/chromium/base/ |
| logging.h | 28 // process from the main application. When the logging system needs to display 38 // If DebugMessage.exe is not found, the logging code will use a normal 45 // Make a bunch of macros for logging. The way to log things is to stream 50 // You can also do conditional logging: 62 // There are also "debug mode" logging macros like the ones above: 68 // All "debug mode" logging is compiled away to nothing for non-debug mode 79 // There are "verbose level" logging macros. They look like 85 // The verbose logging can also be turned on module-by-module. For instance, 100 // E.g., "*/foo/bar/*=2" would change the logging level for all code 106 // // do some logging preparation and loggin 146 namespace logging { namespace [all...] |