HomeSort by relevance Sort by last modified time
    Searched full:logger (Results 76 - 100 of 3133) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/cal10n/
LocLogger.java 27 import org.slf4j.Logger;
37 * A logger specialized in localized logging. Localization is based in the <a
42 public class LocLogger extends LoggerWrapper implements Logger {
55 public LocLogger(Logger logger, IMessageConveyor imc) {
56 super(logger, LoggerWrapper.class.getName());
72 if (!logger.isTraceEnabled()) {
79 ((LocationAwareLogger) logger).log(LOCALIZED, FQCN, LocationAwareLogger.TRACE_INT, translatedMsg, args, null);
81 logger.trace(LOCALIZED, translatedMsg, mpo);
94 if (!logger.isDebugEnabled())
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/log/
AbstractLogger.java 23 /** Abstract Logger.
24 * Manages the atomic registration of the logger by name.
26 public abstract class AbstractLogger implements Logger
28 public final Logger getLogger(String name)
36 Logger logger = Log.getLoggers().get(fullname); local
37 if (logger == null)
39 Logger newlog = newLogger(fullname);
41 logger = Log.getMutableLoggers().putIfAbsent(fullname,newlog);
42 if (logger == null
    [all...]
Log.java 42 * org.slf4j.Logger class is found on the classpath, the static log methods
43 * are directed to a slf4j logger for "org.eclipse.log". Otherwise the logs
65 * The {@link Logger} implementation class name
69 * Legacy flag indicating if {@link Log#ignore(Throwable)} methods produce any output in the {@link Logger}s
76 private final static ConcurrentMap<String, Logger> __loggers = new ConcurrentHashMap<String, Logger>();
137 private static Logger LOG;
161 LOG = (Logger)log_class.newInstance();
167 // Unable to load specified Logger implementation, default to standard logging.
190 public static void setLog(Logger log
243 Object logger = getLogger.invoke(null,name); local
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
Logger.java 26 * Use {@link #getLogger(Class)} to create an instance of Logger that automatically inserts the
28 * log output then use {@link #getLogger()} to create the instance of Logger.
30 public class Logger {
36 public static Logger getLogger(Class<?> classZ) {
37 return new Logger(classZ.getSimpleName() + ": ");
44 public static Logger getLogger() {
45 return new Logger();
51 private Logger() {
56 private Logger(String logPrefix) {
  /external/lldb/examples/summaries/cocoa/
NSNumber.py 15 import lldb.formatters.Logger
31 logger = lldb.formatters.Logger.Logger()
39 logger = lldb.formatters.Logger.Logger()
43 logger = lldb.formatters.Logger.Logger()
    [all...]
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
ILoggerFactory.java 28 * <code>ILoggerFactory</code> instances manufacture {@link Logger}
31 * <p>Most users retrieve {@link Logger} instances through the static
41 * Return an appropriate {@link Logger} instance as specified by the
44 * <p>If the name parameter is equal to {@link Logger#ROOT_LOGGER_NAME}, that is
45 * the string value "ROOT" (case insensitive), then the root logger of the
51 * return the same logger instance regardless of the requested name.
53 * @param name the name of the Logger to return
54 * @return a Logger instance
56 public Logger getLogger(String name);
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jLoggerFactory.java 32 import org.slf4j.Logger;
43 ConcurrentMap<String, Logger> loggerMap;
46 loggerMap = new ConcurrentHashMap<String, Logger>();
54 public Logger getLogger(String name) {
55 Logger slf4jLogger = loggerMap.get(name);
59 org.apache.log4j.Logger log4jLogger;
60 if (name.equalsIgnoreCase(Logger.ROOT_LOGGER_NAME))
65 Logger newInstance = new Log4jLoggerAdapter(log4jLogger);
66 Logger oldInstance = loggerMap.putIfAbsent(name, newInstance);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintAction.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
40 LOGGER.log(Level.WARNING, "'Action' constraint NOT implemented!");
ConstraintChildOf.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintChildOf.class.getName());
40 LOGGER.log(Level.WARNING, "ChildOf constraint NOT implemented!");
ConstraintClampTo.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintClampTo.class.getName());
41 LOGGER.log(Level.INFO, "'Clamp to' not yet implemented! Curves not yet implemented!", name);
ConstraintDampTrack.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintDampTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Damp Track' constraint NOT implemented!");
ConstraintFollowPath.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintFollowPath.class.getName());
40 LOGGER.log(Level.INFO, "'Follow path' not implemented! Curves not yet implemented!");
ConstraintLockTrack.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintLockTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Lock track' constraint NOT implemented!");
ConstraintMinMax.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintMinMax.class.getName());
40 LOGGER.log(Level.WARNING, "'Min max' constraint NOT implemented!");
ConstraintPivot.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintPivot.class.getName());
42 LOGGER.log(Level.WARNING, "'Pivot' constraint NOT implemented!");
ConstraintPython.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintPython.class.getName());
40 LOGGER.log(Level.WARNING, "'Python' constraint NOT implemented!");
ConstraintRigidBodyJoint.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintRigidBodyJoint.class.getName());
40 LOGGER.log(Level.WARNING, "'Rigid body joint' constraint NOT implemented!");
ConstraintSplineInverseKinematic.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintSplineInverseKinematic.class.getName());
42 LOGGER.log(Level.WARNING, "'Splie IK' constraint NOT implemented!");
ConstraintStretchTo.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintStretchTo.class.getName());
40 LOGGER.log(Level.WARNING, "'Stretch to' constraint NOT implemented!");
ConstraintTransform.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
40 LOGGER.log(Level.WARNING, "'Transform' constraint NOT implemented!");
  /packages/apps/Camera2/src/com/android/camera/device/
PortabilityCameraActions.java 26 import com.android.camera.debug.Logger;
51 private final Logger mLogger;
59 Logger.Factory logFactory) {
99 private final Logger mLogger;
102 public CameraAgentRecycler(CameraApi cameraApi, Logger logger) {
104 mLogger = logger;
125 private final Logger mLogger;
129 Logger logger) {
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleCoverBox.java 3 import java.util.logging.Logger;
9 private static Logger LOG = Logger.getLogger(AppleCoverBox.class.getName());
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/line/
NoConversionTest.java 45 // no changes on log4j.Logger import
46 assertEquals("import org.apache.log4j.Logger;", jclLineConverter.getOneLineReplacement("import org.apache.log4j.Logger;"));
47 // no changes on Logger instanciation using LogManager
48 assertEquals("Logger log = LogManager.getLogger(MyClass.class);",
49 jclLineConverter.getOneLineReplacement("Logger log = LogManager.getLogger(MyClass.class);"));
50 // no changes on Logger instanciation using Logger.getLogger
51 assertEquals("public static Logger mylog1 = Logger.getLogger(MyClass.class);"
    [all...]
  /external/v8/src/
log-inl.h 13 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag,
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 9 import java.util.logging.Logger;
18 static Logger logger = Logger.getLogger(RecordReaper.class.getName()); field in class:RecordReaper
52 if (logger.isLoggable(Level.FINEST)) {
53 logger.finest(this.getName() + ".run() JmDNS reaping cache");

Completed in 136 milliseconds

1 2 34 5 6 7 8 91011>>