Skip to content

Commit b23eaf3

Browse files
limbonautbitsandfoxes
authored andcommitted
chore(godot): Sync restructured options (#13353)
1 parent 12f87de commit b23eaf3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/platforms/godot/configuration/options.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ If enabled, the SDK will attach the Godot log file to the event.
9898

9999
## Error Logger Options
100100

101-
<ConfigKey name="error-logger-enabled">
101+
<ConfigKey name="logger-enabled">
102102

103-
If `true`, the SDK will capture logged errors as events and/or breadcrumbs, as defined by `error_logger_event_mask` and `error_logger_breadcrumb_mask` options. Crashes are always captured.
103+
If `true`, the SDK will capture logged errors as events and/or breadcrumbs, as defined by `logger_event_mask` and `logger_breadcrumb_mask` options. Crashes are always captured.
104104

105105
</ConfigKey>
106106

107-
<ConfigKey name="error-logger-breadcrumb-mask">
107+
<ConfigKey name="logger-breadcrumb-mask">
108108

109109
Specifies the types of errors captured as breadcrumbs. Accepts a single value or a bitwise combination of `GodotErrorMask` masks.
110110

@@ -117,29 +117,29 @@ Specifies the types of errors captured as breadcrumbs. Accepts a single value or
117117

118118
```gdscript
119119
var mask = SentryOptions.MASK_ERROR | SentryOptions.MASK_SCRIPT
120-
options.error_logger_breadcrumb_mask = mask
120+
options.logger_breadcrumb_mask = mask
121121
```
122122

123123
</ConfigKey>
124124

125-
<ConfigKey name="error-logger-event-mask">
125+
<ConfigKey name="logger-event-mask">
126126

127127
Specifies the types of errors captured as events. Accepts a single value or a bitwise combination of `GodotErrorMask` masks.
128128

129129
```gdscript
130130
var mask = SentryOptions.MASK_ERROR | SentryOptions.MASK_SCRIPT
131-
options.error_logger_event_mask = mask
131+
options.logger_event_mask = mask
132132
```
133133

134134
</ConfigKey>
135135

136-
<ConfigKey name="error-logger-include-source">
136+
<ConfigKey name="logger-include-source">
137137

138138
If `true`, the SDK will include the surrounding source code of logged errors, if available in the exported project.
139139

140140
</ConfigKey>
141141

142-
<ConfigKey name="error-logger-limits">
142+
<ConfigKey name="logger-limits">
143143

144144
Defines throttling limits for the error logger. These limits are used to prevent the SDK from sending too many non-critical and repeating error events.
145145

0 commit comments

Comments
 (0)