Send feedback
firebase_functions.logger module
Stay organized with collections
Save and categorize content based on your preferences.
Logger module for Firebase Functions.
Classes
LogEntry class firebase_functions.logger. LogEntry
Bases: TypedDict
LogEntry represents a log entry.
See LogEntry .
message : NotRequired [ str ]
severity : Required [ LogSeverity ]
LogSeverity class firebase_functions.logger. LogSeverity ( value )
Bases: str
, Enum
LogSeverity indicates the detailed severity of the log entry. See
LogSeverity <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
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-20 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-20 UTC."],[],[],null,["# firebase_functions.logger module\n\nLogger module for Firebase Functions.\n\nClasses\n-------\n\n| ### LogEntry *class* firebase_functions.logger.LogEntry |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Bases: TypedDict LogEntry represents a log entry. See [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry). message*: NotRequired\\[str\\]* : severity*: Required\\[[LogSeverity](#firebase_functions.logger.LogSeverity \"firebase_functions.logger.LogSeverity\")\\]* : |\n\n| ### LogSeverity *class* firebase_functions.logger.LogSeverity(*value* ) |\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Bases: str, Enum LogSeverity indicates the detailed severity of the log entry. See LogSeverity \\\u003chttps://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#logseverity\\\u003e. ALERT*= 'ALERT'* : CRITICAL*= 'CRITICAL'* : DEBUG*= 'DEBUG'* : EMERGENCY*= 'EMERGENCY'* : ERROR*= 'ERROR'* : INFO*= 'INFO'* : NOTICE*= 'NOTICE'* : WARNING*= 'WARNING'* : |\n\nFunctions\n---------\n\n| ### debug firebase_functions.logger.debug(*\\*args* , *\\*\\*kwargs* ) → None |\n|----------------------------------------------------------------------------|\n| Logs a debug message. |\n\n| ### error firebase_functions.logger.error(*\\*args* , *\\*\\*kwargs* ) → None |\n|----------------------------------------------------------------------------|\n| Logs an error message. |\n\n| ### info firebase_functions.logger.info(*\\*args* , *\\*\\*kwargs* ) → None |\n|--------------------------------------------------------------------------|\n| Logs an info message. |\n\n| ### log firebase_functions.logger.log(*\\*args* , *\\*\\*kwargs* ) → None |\n|------------------------------------------------------------------------|\n| Logs a log message. |\n\n| ### warn firebase_functions.logger.warn(*\\*args* , *\\*\\*kwargs* ) → None |\n|--------------------------------------------------------------------------|\n| Logs a warning message. |\n\n| ### write firebase_functions.logger.write(*entry: [LogEntry](#firebase_functions.logger.LogEntry \"firebase_functions.logger.LogEntry\")* ) → None |\n|--------------------------------------------------------------------------------------------------------------------------------------------------|\n| |"]]