DefaultAiutaDebugSettings

Default debug settings for the Aiuta SDK.

This provides sensible default values for debug settings that are suitable for most development scenarios. Both validation policies are set to WARNING, which means issues will be logged but won't crash the application.

// Using default settings
val configuration = aiutaConfiguration {
// debugSettings will automatically use DefaultAiutaDebugSettings
features { /* ... */}
userInterface { /* ... */}
}

// Explicitly using default settings
val configuration = aiutaConfiguration {
debugSettings = DefaultAiutaDebugSettings
// other configuration...
}

See also