Home
last modified time | relevance | path

Searched refs:loggers (Results 1 – 19 of 19) sorted by relevance

/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
DSubstituteLoggerFactory.java43 …final ConcurrentMap<String, SubstituteLogger> loggers = new ConcurrentHashMap<String, SubstituteLo… field in SubstituteLoggerFactory
46 SubstituteLogger logger = loggers.get(name); in getLogger()
49 SubstituteLogger oldLogger = loggers.putIfAbsent(name, logger); in getLogger()
57 return new ArrayList<String>(loggers.keySet()); in getLoggerNames()
61 return new ArrayList<SubstituteLogger>(loggers.values()); in getLoggers()
65 loggers.clear(); in clear()
/external/lisa/
Dlogging.conf6 [loggers]
22 [loggers]
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
DLoggerFactory.java177 List<SubstituteLogger> loggers = TEMP_FACTORY.getLoggers(); in fixSubstitutedLoggers() local
179 if (loggers.isEmpty()) { in fixSubstitutedLoggers()
188 for (SubstituteLogger subLogger : loggers) { in fixSubstitutedLoggers()
/external/python/cpython2/Doc/library/
Dlogging.config.rst93 :param disable_existing_loggers: If specified as ``False``, loggers which
98 disable any existing loggers unless they or
104 existing loggers were *always* disabled.
236 * *loggers* - the corresponding value will be a dict in which each key
252 The specified loggers will be configured according to the level,
268 * *disable_existing_loggers* - whether any existing loggers are to be
285 the object graph of loggers, handlers, filters, formatters at
286 run-time, once a configuration is set up; the verbosity of loggers and
288 loggers, propagation flags). Changing the object graph arbitrarily in
297 ``propagate`` settings in the ``loggers`` and ``root`` entries.
[all …]
Dlogging.rst45 * Handlers send the log records (created by loggers) to the appropriate
64 Loggers that are further down in the hierarchical list are children of loggers
66 loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all
68 package hierarchy, and identical to it if you organise your loggers on a
79 handlers of higher level (ancestor) loggers, in addition to any handlers
81 loggers' handlers - neither the level nor filters of the ancestor loggers in
85 of ancestor loggers.
93 hierarchy, then it will see all events logged by all descendant loggers,
107 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
518 initialized with 'A.B' will allow events logged by loggers 'A.B', 'A.B.C',
[all …]
/external/python/cpython2/Doc/howto/
Dlogging.rst331 of components: loggers, handlers, filters, and formatters.
334 * Handlers send the log records (created by loggers) to the appropriate
340 Log event information is passed between loggers, handlers, filters and
344 class (hereafter called :dfn:`loggers`). Each instance has a name, and they are
346 separators. For example, a logger named 'scan' is the parent of loggers
350 A good convention to use when naming loggers is to use a module-level logger,
358 The root of the hierarchy of loggers is called the root logger. That's the
390 The flow of log event information in loggers and handlers is illustrated in the
450 down in the hierarchical list are children of loggers higher up in the list.
451 For example, given a logger with a name of ``foo``, loggers with names of
[all …]
Dlogging-cookbook.rst232 # Now, define a couple of other loggers which might represent areas in your
343 # Now, define a couple of other loggers which might represent areas in your
745 'loggers': {
/external/python/cpython2/Lib/logging/
Dconfig.py523 loggers = config.get('loggers', EMPTY_DICT)
524 for name in loggers:
526 self.configure_logger(name, loggers[name], True)
609 loggers = config.get('loggers', EMPTY_DICT)
610 for name in loggers:
624 self.configure_logger(name, loggers[name])
/external/libphonenumber/demo/war/WEB-INF/
Dlogging.properties12 # Set the default logging level for all loggers to WARNING
/external/testng/src/main/java/org/testng/log4testng/
DLogger.java121 private static final Map<Class, Logger> loggers = Maps.newHashMap(); field in Logger
148 Logger logger= loggers.get(pClass); in getLogger()
154 loggers.put(pClass, logger); in getLogger()
478 loggers.clear(); in testInitialize()
/external/slf4j/slf4j-migrator/
DLIMITATIONS.txt13 - if a method declares multiple loggers on the same line, the conversion will not be complete. Exam…
/external/slf4j/slf4j-simple/src/test/resources/
Dsimplelogger.properties2 # Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to …
/external/autotest/server/
Dserver_job.py1110 loggers, _, _ = select.select(self.warning_loggers, [], [], 0)
1112 for logger in loggers:
1129 if not loggers:
/external/google-breakpad/src/common/mac/
DGTMLogger.m94 // as a writer. Our inner loggers should apply no formatting since the main
/external/lisa/ipynb/releases/
DReleaseNotes_v16.12.ipynb40 "[loggers]\r\n",
/external/python/cpython2/Doc/whatsnew/
D2.7.rst468 The following example configures two loggers, the root logger and a
496 # Specify all the subordinate loggers
497 'loggers': {
D2.3.rst462 There's also a root :class:`Logger` that's the parent of all other loggers.
/external/python/cpython2/Misc/
DNEWS6606 attempted to sort the existing loggers.
9753 - Issue #3136: fileConfig()'s disabling of old loggers is now conditional via
/external/jline/src/src/test/resources/jline/example/
Denglish.gz