Sha256: e2d17718ba2a746b2405e6c91eabd0de0c70cce38d838ee4cdcd3ee52fed0058

Contents?: true

Size: 1006 Bytes

Versions: 4

Compression:

Stored size: 1006 Bytes

Contents

# Enabling Logging

To enable logging for this library, set the logger for the underlying [Google
API
Client](https://github.com/google/google-api-ruby-client/blob/master/README.md#logging)
library. The logger that you set may be a Ruby stdlib
[`Logger`](https://ruby-doc.org/stdlib-2.4.0/libdoc/logger/rdoc/Logger.html) as
shown below, or a
[`Google::Cloud::Logging::Logger`](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-logging/latest/Google/Cloud/Logging/Logger)
that will write logs to [Stackdriver
Logging](https://cloud.google.com/logging/).

If you do not set the logger explicitly and your application is running in a
Rails environment, it will default to `Rails.logger`. Otherwise, if you do not
set the logger and you are not using Rails, logging is disabled by default.

Configuring a Ruby stdlib logger:

```ruby
require "logger"

my_logger = Logger.new $stderr
my_logger.level = Logger::WARN

# Set the Google API Client logger
Google::Apis.logger = my_logger
```

Version data entries

4 entries across 4 versions & 4 rubygems

Version Path
google-cloud-storage-1.14.1 LOGGING.md
google-cloud-resource_manager-0.30.2 LOGGING.md
google-cloud-dns-0.29.3 LOGGING.md
google-cloud-bigquery-1.8.1 LOGGING.md