debugger: Only display basename of scripts
This commit is contained in:
parent
1b63bd16ed
commit
72589b60ad
@ -853,7 +853,7 @@ Interface.prototype.printScripts = function(displayNatives) {
|
|||||||
script.name == client.currentScript ||
|
script.name == client.currentScript ||
|
||||||
!script.isNative) {
|
!script.isNative) {
|
||||||
text += script.name == client.currentScript ? '* ' : ' ';
|
text += script.name == client.currentScript ? '* ' : ' ';
|
||||||
text += script.name + '\n';
|
text += require('path').basename(script.name) + '\n';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user