firebase_functions.logger module

Logger module for Firebase Functions.

Classes

LogEntry

classfirebase_functions.logger.LogEntry

Bases:TypedDict

LogEntry represents a log entry.SeeLogEntry.

message:NotRequired[str]
severity:Required[LogSeverity]

LogSeverity

classfirebase_functions.logger.LogSeverity(value)

Bases:str,Enum

LogSeverity indicates the detailed severity of the log entry. SeeLogSeverity <https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#logseverity>.

ALERT='ALERT'
CRITICAL='CRITICAL'
DEBUG='DEBUG'
EMERGENCY='EMERGENCY'
ERROR='ERROR'
INFO='INFO'
NOTICE='NOTICE'
WARNING='WARNING'

Functions

debug

firebase_functions.logger.debug(*args,**kwargs)None

Logs a debug message.

error

firebase_functions.logger.error(*args,**kwargs)None

Logs an error message.

info

firebase_functions.logger.info(*args,**kwargs)None

Logs an info message.

log

firebase_functions.logger.log(*args,**kwargs)None

Logs a log message.

warn

firebase_functions.logger.warn(*args,**kwargs)None

Logs a warning message.

write

firebase_functions.logger.write(entry:LogEntry)None

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-09-20 UTC.