Iva Kaneva

Results 4 issues of Iva Kaneva

I have the following configuration: ``` python structlog.configure( processors=[ structlog.stdlib.add_logger_name, structlog.stdlib.add_log_level, structlog.stdlib.PositionalArgumentsFormatter(), structlog.processors.UnicodeEncoder(encoding='utf-8', errors='backslashreplace'), structlog.processors.TimeStamper(fmt='iso'), structlog.processors.StackInfoRenderer(), structlog.processors.format_exc_info, structlog.stdlib.ProcessorFormatter.wrap_for_formatter, ], context_class=structlog.threadlocal.wrap_dict(dict), logger_factory=structlog.stdlib.LoggerFactory(), wrapper_class=structlog.stdlib.BoundLogger, cache_logger_on_first_use=True, ) pre_chain = [ # Add the...

I have a use case where I need to apply formatter to the log messages, that `SentryHandler` sends to Sentry. In the code it looks like `SentryHandles` is formatting the...

Improvement

Sentry should recognize API JSON requests as JSON type not as Form. If they are recognized as Form the body payload appears empty in Sentry UI. [RFC6839](https://tools.ietf.org/html/rfc6839) Fixes #382

### [REQUIRED] Environment info **firebase-tools:11.0.1** **Platform:MacOS** ### [REQUIRED] Test case ```javascript export const testSecretAccess = functions .region("europe-west3") .runWith({ secrets: ["TEST_API_USER"], }) .https.onRequest(async (request, response) => { functions.logger.info(`SECRET: ${process.env.TEST_API_USER}`); response.send({ status:...

api: functions
bug