Fix code indentation

This commit is contained in:
2025-01-10 16:57:45 +01:00
committed by GitHub
parent be4d3bd7d7
commit e507c71209
+13 -13
View File
@@ -402,23 +402,23 @@ Once one (or more) logging interfaces have been created and are ready to use, th
```dart ```dart
Future<void> main() async { Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
await Arcane.logger.registerInterfaces([ await Arcane.logger.registerInterfaces([
// Register the debug console logging interface // Register the debug console logging interface
DebugConsole.I, DebugConsole.I,
// Register the New Relic logging interface // Register the New Relic logging interface
NewRelic.I, NewRelic.I,
]); ]);
// Initialize registered logging interfaces // Initialize registered logging interfaces
// NOTE: This step may be deferred until a user has consented to app tracking. // NOTE: This step may be deferred until a user has consented to app tracking.
await Arcane.logger.initializeInterfaces(); await Arcane.logger.initializeInterfaces();
// Alternatively, interfaces may be initialized independently: // Alternatively, interfaces may be initialized independently:
await NewRelic.I.init(); await NewRelic.I.init();
runApp(MyApp()); runApp(MyApp());
} }
``` ```