You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.addInput(`debugPort`,`Debug port`,`Default secure port is <code>8005</code>. Tells the client which port the debug service is running on.`,{default: config.debugPort,minlength: 1,maxlength: 5,regexTest: `^\\d+$`})
179
-
.addInput(`debugSepPort`,`SEP debug port`,`Default secure port is <code>8008</code>. Tells the client which port the debug service for SEP is running on.`,{default: config.debugSepPort,minlength: 1,maxlength: 5,regexTest: `^\\d+$`})
180
-
.addCheckbox(`debugUpdateProductionFiles`,`Update production files`,`Determines whether the job being debugged can update objects in production (<code>*PROD</code>) libraries.`,config.debugUpdateProductionFiles)
179
+
.addInput(`debugPort`,`Debug port`,`Default secure port is <code>8005</code>. Tells the client which port the debug service is running on.`,{default: config.debugPort,minlength: 1,maxlength: 5,regexTest: `^\\d+$`});
180
+
181
+
if(awaitisSEPSupported()){
182
+
debuggerTab.addInput(`debugSepPort`,`SEP debug port`,`Default secure port is <code>8008</code>. Tells the client which port the debug service for SEP is running on.`,{default: config.debugSepPort,minlength: 1,maxlength: 5,regexTest: `^\\d+$`});
183
+
}
184
+
185
+
debuggerTab.addCheckbox(`debugUpdateProductionFiles`,`Update production files`,`Determines whether the job being debugged can update objects in production (<code>*PROD</code>) libraries.`,config.debugUpdateProductionFiles)
181
186
.addCheckbox(`debugEnableDebugTracing`,`Debug trace`,`Tells the debug service to send more data to the client. Only useful for debugging issues in the service. Not recommended for general debugging.`,config.debugEnableDebugTracing);
0 commit comments