Skip to content

Commit

Permalink
docs(app): Add enum for app log level in json schema (#7254)
Browse files Browse the repository at this point in the history
* Add enum for app log level

* Update packages/app/firebase-schema.json

---------

Co-authored-by: Mike Hardy <[email protected]>
  • Loading branch information
hbiede and mikehardy authored Aug 17, 2023
1 parent cca7053 commit 79ec9ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/app/firebase-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@
},
"app_log_level": {
"description": "Set the log level across all modules. Only applies to iOS currently. Can be 'error', 'warn', 'info', 'debug'.\n Logs messages at the configured level or lower.\n Note that if an app is running from AppStore, it will never log above info even if level is set to a higher (more verbose) setting",
"type": "string"
"type": "string",
"enum": [
"error",
"warn",
"info",
"debug"
]
},
"app_check_token_auto_refresh": {
"description": "If this flag is disabled then Firebase App Check will not periodically auto-refresh the app check token.\n This is useful for opt-in-first data flows, for example when dealing with GDPR compliance. \nIf unset it will default to the SDK-wide data collection default enabled setting. This may be overridden dynamically in Javascript.",
Expand Down

1 comment on commit 79ec9ca

@vercel
Copy link

@vercel vercel bot commented on 79ec9ca Aug 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.