File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed
google/cloud/logging/handlers Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -40,21 +40,12 @@ class AppEngineHandler(CloudLoggingHandler):
4040 :param client: the authenticated Google Cloud Logging client for this
4141 handler to use
4242
43- :type name: str
44- :param name: the name of the custom log in Stackdriver Logging. Defaults
45- to 'python'. The name of the Python logger will be represented
46- in the ``python_logger`` field.
47-
4843 :type transport: type
4944 :param transport: Class for creating new transport objects. It should
5045 extend from the base :class:`.Transport` type and
5146 implement :meth`.Transport.send`. Defaults to
5247 :class:`.BackgroundThreadTransport`. The other
5348 option is :class:`.SyncTransport`.
54-
55- :type resource: :class:`~google.cloud.logging.resource.Resource`
56- :param resource: Monitored resource of the entry, defaults
57- to the global resource type.
5849 """
5950
6051 DEFAULT_LOGGER_NAME = 'app'
Original file line number Diff line number Diff line change 1818"""
1919
2020from google .cloud .logging .handlers .transports .base import Transport
21- from google .cloud .logging .resource import Resource
2221
2322
2423class SyncTransport (Transport ):
Original file line number Diff line number Diff line change 1717
1818
1919class TestAppEngineHandlerHandler (unittest .TestCase ):
20-
2120 PROJECT = 'PROJECT'
2221
2322 def _get_target_class (self ):
You can’t perform that action at this time.
0 commit comments