We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tns debug
1 parent 80d779d commit dee2148Copy full SHA for dee2148
lib/services/ios-debug-service.ts
@@ -39,7 +39,9 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
39
return "ios";
40
}
41
42
- public debug(debugData: IDebugData, debugOptions: IDebugOptions): Promise<string> {
+ public async debug(debugData: IDebugData, debugOptions: IDebugOptions): Promise<string> {
43
+ await this.device.openDeviceLogStream();
44
+
45
if (debugOptions.debugBrk && debugOptions.start) {
46
this.$errors.failWithoutHelp("Expected exactly one of the --debug-brk or --start options.");
47
0 commit comments