/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | SubstituteLoggerFactory.java | 43 …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/autotest/server/cros/power/ |
D | power_telemetry_logger.py | 125 loggers = self._load_and_trim_data(start_ts, end_ts) 130 self._upload_data(loggers, checkpoint_logger) 324 def _upload_data(self, loggers, checkpoint_logger): argument 331 for logger in loggers: 401 loggers = list() 460 loggers.append(logger) 462 return loggers
|
/external/autotest/client/site_tests/power_Dummy/ |
D | control | 17 loggers, and measurement dashboards. Run for a short amount of time, collect 19 Loggers included in this test are all loggers in power_test and
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
D | LoggerFactory.java | 177 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/ |
D | logging.config.rst | 93 :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 …]
|
D | logging.rst | 45 * 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/cpython3/Doc/library/ |
D | logging.config.rst | 105 :param disable_existing_loggers: If specified as ``False``, loggers which 110 disable any existing non-root loggers unless 174 disable existing loggers, you will need to use a JSON format for 284 * *loggers* - the corresponding value will be a dict in which each key 300 The specified loggers will be configured according to the level, 316 * *disable_existing_loggers* - whether any existing non-root loggers are 333 the object graph of loggers, handlers, filters, formatters at 334 run-time, once a configuration is set up; the verbosity of loggers and 336 loggers, propagation flags). Changing the object graph arbitrarily in 345 ``propagate`` settings in the ``loggers`` and ``root`` entries. [all …]
|
D | logging.rst | 41 * Handlers send the log records (created by loggers) to the appropriate 60 Loggers that are further down in the hierarchical list are children of loggers 62 loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all 64 package hierarchy, and identical to it if you organise your loggers on a 75 passed to the handlers of higher level (ancestor) loggers, in addition to 77 ancestor loggers' handlers - neither the level nor filters of the ancestor 78 loggers in question are considered. 81 of ancestor loggers. 89 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 [all …]
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 331 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 …]
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 352 of components: loggers, handlers, filters, and formatters. 355 * Handlers send the log records (created by loggers) to the appropriate 361 Log event information is passed between loggers, handlers, filters and 365 class (hereafter called :dfn:`loggers`). Each instance has a name, and they are 367 separators. For example, a logger named 'scan' is the parent of loggers 371 A good convention to use when naming loggers is to use a module-level logger, 379 The root of the hierarchy of loggers is called the root logger. That's the 413 The flow of log event information in loggers and handlers is illustrated in the 473 down in the hierarchical list are children of loggers higher up in the list. 474 For example, given a logger with a name of ``foo``, loggers with names of [all …]
|
D | logging-cookbook.rst | 236 # Now, define a couple of other loggers which might represent areas in your 347 :class:`QueueHandler` to those loggers which are accessed from 354 attach only ``QueueHandlers`` to your loggers) for the benefit of other 426 # Now, define a couple of other loggers which might represent areas in your 877 loggers = ['foo', 'foo.bar', 'foo.bar.baz', 881 logger = logging.getLogger(random.choice(loggers)) 919 'loggers': { 945 This variant shows how you can e.g. apply configuration for particular loggers 1239 before any loggers that you care about are instantiated. 1251 developers can set a suitable filter on their loggers, but they would have to [all …]
|
/external/oss-fuzz/projects/hugo/ |
D | fuzz.go | 36 cs, _ := helpers.NewContentSpec(l, loggers.NewErrorLogger(), afero.NewMemMapFs())
|
/external/libphonenumber/demo/war/WEB-INF/ |
D | logging.properties | 12 # Set the default logging level for all loggers to WARNING
|
/external/python/cpython2/Lib/logging/ |
D | config.py | 523 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/python/cpython3/Lib/logging/ |
D | config.py | 520 loggers = config.get('loggers', EMPTY_DICT) 521 for name in loggers: 523 self.configure_logger(name, loggers[name], True) 605 loggers = config.get('loggers', EMPTY_DICT) 606 for name in loggers: 618 self.configure_logger(name, loggers[name])
|
/external/webrtc/modules/congestion_controller/goog_cc/test/ |
D | goog_cc_printer.cc | 92 std::deque<FieldLogger*> loggers({ in CreateLoggers() local 131 return loggers; in CreateLoggers()
|
/external/testng/src/main/java/org/testng/log4testng/ |
D | Logger.java | 121 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/ |
D | LIMITATIONS.txt | 13 - if a method declares multiple loggers on the same line, the conversion will not be complete. Exam…
|
/external/wayland/patches/ |
D | 0001-client-Support-client-protocol-loggers.diff | 4 Subject: [PATCH 1/3] client: Support client protocol loggers 7 loggers. 17 As with the server protocol loggers, this is akin to setting
|
/external/slf4j/slf4j-simple/src/test/resources/ |
D | simplelogger.properties | 2 # Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to …
|
/external/rust/crates/log/ |
D | README.md | 63 * Simple minimal loggers:
|
/external/autotest/server/ |
D | server_job.py | 1118 loggers, _, _ = select.select(self.warning_loggers, [], [], 0) 1120 for logger in loggers: 1137 if not loggers:
|
/external/autotest/client/cros/power/ |
D | power_status.py | 2413 loggers = [ 2419 loggers.append(FanRpmLogger(seconds_period, checkpoint_logger)) 2421 return loggers
|
/external/rust/crates/grpcio-sys/grpc/summerofcode/2018/ |
D | naresh.md | 182 where the module level loggers don't initialize a default logging handler.
|
/external/grpc-grpc/summerofcode/2018/ |
D | naresh.md | 182 where the module level loggers don't initialize a default logging handler.
|