-
Notifications
You must be signed in to change notification settings - Fork 604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doc error-reporting integration with logs #2333
Doc error-reporting integration with logs #2333
Conversation
Document loggin-{winston,bunyan} and error-reporting from each other's README files.
packages/logging-bunyan/README.md
Outdated
@@ -66,6 +66,10 @@ var loggingBunyan = require('@google-cloud/logging-bunyan')({ | |||
// ...you're good to go! | |||
``` | |||
|
|||
## Error Reporting | |||
|
|||
Any `Error` objects you log at severity `error` at higher can automatically be picked up by [Stackdriver Error Reporting][error-reporting] if your application is running on Google Cloud Platform. You may also want to see [@google-cloud/error-reporting][@google-cloud/error-reporting] module which provides direct access to the Error Reporting API. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
packages/logging-bunyan/README.md
Outdated
@@ -66,6 +66,10 @@ var loggingBunyan = require('@google-cloud/logging-bunyan')({ | |||
// ...you're good to go! | |||
``` | |||
|
|||
## Error Reporting | |||
|
|||
Any `Error` objects you log at severity `error` at higher can automatically be picked up by [Stackdriver Error Reporting][error-reporting] if your application is running on Google Cloud Platform. You may also want to see [@google-cloud/error-reporting][@google-cloud/error-reporting] module which provides direct access to the Error Reporting API. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
packages/logging-winston/README.md
Outdated
@@ -70,6 +70,10 @@ winston.add(transport, { | |||
// ...you're good to go! | |||
``` | |||
|
|||
## Error Reporting | |||
|
|||
Any `Error` objects you log at severity `error` at higher can automatically be picked up by [Stackdriver Error Reporting][error-reporting] if your application is running on Google Cloud Platform. You may also want to see [@google-cloud/error-reporting][@google-cloud/error-reporting] module which provides direct access to the Error Reporting API. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
packages/logging-winston/README.md
Outdated
@@ -70,6 +70,10 @@ winston.add(transport, { | |||
// ...you're good to go! | |||
``` | |||
|
|||
## Error Reporting | |||
|
|||
Any `Error` objects you log at severity `error` at higher can automatically be picked up by [Stackdriver Error Reporting][error-reporting] if your application is running on Google Cloud Platform. You may also want to see [@google-cloud/error-reporting][@google-cloud/error-reporting] module which provides direct access to the Error Reporting API. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Document loggin-{winston,bunyan} and error-reporting from each other's
README files.