There a couple of ways to disable the 5 "?" trigger to launch the debug log while taking training.
1. Comment out the line "window.parent.Control.CheckForDebugCommand(intKeyCode);" in boh *top.aspx and *left.aspx in your ui pages. These pages are located in the remoteuifiles directory.
2. Or remove this entire section in the javascript:
window.document.onkeypress = CheckKeyPress;
function CheckKeyPress(e){
var intKeyCode = 0;
if (window.event) {
e = window.event;
intKeyCode = e.keyCode;
}
else {
intKeyCode = e.which;
}
window.parent.Control.CheckForDebugCommand(intKeyCode);
}
Thank you,
Joe