feat(config): logRuntimeDetail to enable verbose platform runtime logs

This commit is contained in:
Nathan Walker
2022-07-16 14:16:35 -07:00
parent 24333a42f1
commit 309f13f120

View File

@@ -10,6 +10,12 @@ interface IConfigPlatform {
* This can be very useful in production environments when you don't want your app to just crash if a developer forgot to guard against an unexpected JS level exception.
*/
discardUncaughtJsExceptions?: boolean;
/**
* Log detailed platform runtime calls
* This will reveal verbose platform runtime details handled in the NativeScript runtimes.
*/
logRuntimeDetail?: boolean;
}
interface IConfigIOS extends IConfigPlatform {}