Home
last modified time | relevance | path

Searched full:logging (Results 1 – 25 of 23111) sorted by relevance

12345678910>>...925

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_logging.py17 """Test harness for the logging module. Run all tests.
22 import logging
23 import logging.handlers
24 import logging.config
81 """Base class for logging tests."""
88 """Setup the default logging stream to an internal StringIO instance,
92 logger_dict = logging.getLogger().manager.loggerDict
93 logging._acquireLock()
95 self.saved_handlers = logging._handlers.copy()
96 self.saved_handler_list = logging._handlerList[:]
[all …]
/aosp_15_r20/external/python/absl-py/absl/logging/tests/
Dlogging_test.py15 """Unit tests for absl.logging."""
21 import logging as std_logging
34 from absl import logging
43 """Tests the initial logging configuration."""
47 self.assertIs(absl_logger, logging.get_absl_logger())
48 self.assertIsInstance(absl_logger, logging.ABSLLogger)
50 logging.get_absl_handler().python_handler.formatter,
51 logging.PythonFormatter)
96 # Other tests change the root logging level, so we can't
136 self.python_handler = logging.PythonHandler()
[all …]
/aosp_15_r20/out/soong/.intermediates/external/setupcompat/setupcompat/android_common/kotlin_headers/
Dsetupcompat.jar ... setupcompat/ com/google/android/setupcompat/logging/ com/google/android/setupcompat/logging ...
/aosp_15_r20/prebuilts/cmdline-tools/tools/lib/external/commons-logging/commons-logging/1.2/
HDcommons-logging-1.2.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl
/aosp_15_r20/prebuilts/tools/common/google-api-java-client/1.33.2/libs/
HDcommons-logging-1.2.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl
/aosp_15_r20/prebuilts/tools/common/google-api-java-client/1.31.3/libs/
HDcommons-logging-1.2.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl
/aosp_15_r20/prebuilts/devtools/tools/lib/
HDcommons-logging-1.1.1.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl ...
/aosp_15_r20/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst4 Logging Cookbook
9 This page contains a number of recipes related to logging, which have been found
13 .. currentmodule:: logging
15 Using logging in multiple modules
18 Multiple calls to ``logging.getLogger('someLogger')`` return a reference to the
26 import logging
30 logger = logging.getLogger('spam_application')
31 logger.setLevel(logging.DEBUG)
33 fh = logging.FileHandler('spam.log')
34 fh.setLevel(logging.DEBUG)
[all …]
Dlogging.rst2 Logging HOWTO
9 .. currentmodule:: logging
11 Basic Logging Tutorial
14 Logging is a means of tracking events that happen when some software runs. The
15 software's developer adds logging calls to their code to indicate that certain
22 When to use logging
25 Logging provides a set of convenience functions for simple logging usage. These
27 :func:`critical`. To determine when to use logging, see the table below, which
37 | Report events that occur during | :func:`logging.info` (or |
38 | normal operation of a program (e.g. | :func:`logging.debug` for very |
[all …]
/aosp_15_r20/out/soong/.intermediates/external/setupcompat/setupcompat/android_common/kotlin/
Dsetupcompat.jar ... setupcompat/ com/google/android/setupcompat/logging/ com/google/android/setupcompat/logging ...
/aosp_15_r20/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst4 Logging Cookbook
9 This page contains a number of recipes related to logging, which have been found
12 .. currentmodule:: logging
14 Using logging in multiple modules
17 Multiple calls to ``logging.getLogger('someLogger')`` return a reference to the
25 import logging
29 logger = logging.getLogger('spam_application')
30 logger.setLevel(logging.DEBUG)
32 fh = logging.FileHandler('spam.log')
33 fh.setLevel(logging.DEBUG)
[all …]
Dlogging.rst2 Logging HOWTO
9 .. currentmodule:: logging
11 Basic Logging Tutorial
14 Logging is a means of tracking events that happen when some software runs. The
15 software's developer adds logging calls to their code to indicate that certain
22 When to use logging
25 Logging provides a set of convenience functions for simple logging usage. These
27 :func:`critical`. To determine when to use logging, see the table below, which
37 | Report events that occur during | :func:`logging.info` (or |
38 | normal operation of a program (e.g. | :func:`logging.debug` for very |
[all …]
/aosp_15_r20/platform_testing/tests/automotive/mobly_tests/utilities/
H A Dspectatio_utils.py15 import logging
42 logging.info('Checking whether device is connected.')
46 logging.info("Opening app grid")
50 logging.info("Dial phone number <%s>", callee_number)
55 logging.info("End the call")
60 logging.info(
86 logging.info("Importing contacts from VCF file to device Contacts")
94 logging.info("Make a call")
99 logging.info("Open call history")
105 logging.info("Opening contacts")
[all …]
/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/
H A DLogging.java17 // source: google/api/logging.proto
25 * Logging configuration of the service.
42 * logging:
54 * Protobuf type {@code google.api.Logging}
56 public final class Logging extends com.google.protobuf.GeneratedMessageV3 class
58 // @@protoc_insertion_point(message_implements:google.api.Logging)
61 // Use Logging.newBuilder() to construct.
62 private Logging(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Logging() method in Logging
66 private Logging() { in Logging() method in Logging
74 return new Logging(); in newInstance()
[all …]
/aosp_15_r20/external/googleapis/google/logging/v2/
H A Dlogging_v2.yaml3 name: logging.googleapis.com
4 title: Cloud Logging API
7 - name: google.logging.v2.ConfigServiceV2
8 - name: google.logging.v2.LoggingServiceV2
9 - name: google.logging.v2.MetricsServiceV2
13 - name: google.logging.v2.BucketMetadata
14 - name: google.logging.v2.CopyLogEntriesMetadata
15 - name: google.logging.v2.CopyLogEntriesResponse
16 - name: google.logging.v2.LinkMetadata
17 - name: google.logging.v2.LocationMetadata
[all …]
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_logging.py17 """Test harness for the logging module. Run all tests.
22 import logging
23 import logging.handlers
24 import logging.config
53 """Base class for logging tests."""
60 """Setup the default logging stream to an internal StringIO instance,
62 logger_dict = logging.getLogger().manager.loggerDict
63 logging._acquireLock()
65 self.saved_handlers = logging._handlers.copy()
66 self.saved_handler_list = logging._handlerList[:]
[all …]
/aosp_15_r20/out/soong/.intermediates/system/logging/liblog/liblog/android_arm64_armv8-2a_cortex-a55_static_sabi/obj/system/logging/liblog/
Dlogger_write.sdump10 "source_file" : "system/logging/liblog/include/log/log_read.h"
17 "source_file" : "system/logging/liblog/include/private/android_logger.h"
142 "source_file" : "system/logging/liblog/include/log/log.h",
189 "source_file" : "system/logging/liblog/include/android/log.h",
244 "source_file" : "system/logging/liblog/include/android/log.h",
261 "source_file" : "system/logging/liblog/include/android/log.h"
274 "source_file" : "system/logging/liblog/include/android/log.h"
293 "source_file" : "system/logging/liblog/include/log/log_event_list.h"
309 "source_file" : "system/logging/liblog/include/log/log_event_list.h"
325 "source_file" : "system/logging/liblog/include/log/log_event_list.h"
[all …]
/aosp_15_r20/external/guice/lib/build/
HDcommons-logging-1.0.4.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl ...
/aosp_15_r20/external/guice/extensions/struts2/lib/
HDcommons-logging-1.0.4.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl ...
/aosp_15_r20/external/guice/extensions/persist/lib/
HDcommons-logging-1.0.4.jar ... apache/commons/ org/apache/commons/logging/ org/apache/commons/logging/impl ...
/aosp_15_r20/out/soong/.intermediates/system/logging/liblog/liblog/android_arm64_armv8-2a_cortex-a55_shared/
Dliblog.so.lsdump10 "source_file" : "system/logging/liblog/include/log/log_read.h"
17 "source_file" : "system/logging/liblog/include/private/android_logger.h"
333 "source_file" : "system/logging/liblog/include/log/log.h",
380 "source_file" : "system/logging/liblog/include/android/log.h",
467 "source_file" : "system/logging/liblog/include/log/logprint.h",
522 "source_file" : "system/logging/liblog/include/android/log.h",
554 "source_file" : "system/logging/liblog/include/private/android_logger.h"
567 "source_file" : "system/logging/liblog/include/android/log.h"
580 "source_file" : "system/logging/liblog/include/android/log.h"
601 "source_file" : "system/logging/liblog/include/android/log.h"
[all …]
/aosp_15_r20/external/google-cloud-java/google-cloud-examples/src/main/java/com/google/cloud/examples/logging/
H A DLoggingExample.java17 package com.google.cloud.examples.logging;
23 import com.google.cloud.logging.LogEntry;
24 import com.google.cloud.logging.Logging;
25 import com.google.cloud.logging.Logging.EntryListOption;
26 import com.google.cloud.logging.LoggingOptions;
27 import com.google.cloud.logging.Metric;
28 import com.google.cloud.logging.MetricInfo;
29 import com.google.cloud.logging.Payload.StringPayload;
30 import com.google.cloud.logging.Severity;
31 import com.google.cloud.logging.Sink;
[all …]
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/x86_64/source-based/
Dliblog.so.lsdump11 "source_file" : "system/logging/liblog/include/log/log_read.h"
18 "source_file" : "system/logging/liblog/include/private/android_logger.h"
357 "source_file" : "system/logging/liblog/include/log/log.h",
406 "source_file" : "system/logging/liblog/include/android/log.h",
495 "source_file" : "system/logging/liblog/include/log/logprint.h",
552 "source_file" : "system/logging/liblog/include/android/log.h",
586 "source_file" : "system/logging/liblog/include/private/android_logger.h"
601 "source_file" : "system/logging/liblog/include/android/log.h"
616 "source_file" : "system/logging/liblog/include/android/log.h"
637 "source_file" : "system/logging/liblog/include/android/log.h"
[all …]
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/arm_arm64/source-based/
Dliblog.so.lsdump11 "source_file" : "system/logging/liblog/include/log/log_read.h"
18 "source_file" : "system/logging/liblog/include/private/android_logger.h"
377 "source_file" : "system/logging/liblog/include/log/log.h",
426 "source_file" : "system/logging/liblog/include/android/log.h",
515 "source_file" : "system/logging/liblog/include/log/logprint.h",
572 "source_file" : "system/logging/liblog/include/android/log.h",
606 "source_file" : "system/logging/liblog/include/private/android_logger.h"
621 "source_file" : "system/logging/liblog/include/android/log.h"
636 "source_file" : "system/logging/liblog/include/android/log.h"
657 "source_file" : "system/logging/liblog/include/android/log.h"
[all …]
/aosp_15_r20/prebuilts/abi-dumps/vndk/33/64/arm/source-based/
Dliblog.so.lsdump11 "source_file" : "system/logging/liblog/include/log/log_read.h"
18 "source_file" : "system/logging/liblog/include/private/android_logger.h"
377 "source_file" : "system/logging/liblog/include/log/log.h",
426 "source_file" : "system/logging/liblog/include/android/log.h",
515 "source_file" : "system/logging/liblog/include/log/logprint.h",
572 "source_file" : "system/logging/liblog/include/android/log.h",
606 "source_file" : "system/logging/liblog/include/private/android_logger.h"
621 "source_file" : "system/logging/liblog/include/android/log.h"
636 "source_file" : "system/logging/liblog/include/android/log.h"
657 "source_file" : "system/logging/liblog/include/android/log.h"
[all …]

12345678910>>...925