File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ class PhpDebugSession extends vscode.DebugSession {
249249 }
250250
251251 public sendEvent ( event : VSCodeDebugProtocol . Event ) : void {
252- const log = `-> ${ event . event } Event\n${ util . inspect ( event , { depth : null } ) } \n\n` ;
252+ const log = `<- ${ event . event } Event\n${ util . inspect ( event , { depth : null } ) } \n\n` ;
253253 console . log ( log ) ;
254254 if ( this . _args && this . _args . log && ! ( event instanceof vscode . OutputEvent ) ) {
255255 this . sendEvent ( new vscode . OutputEvent ( log ) ) ;
@@ -258,7 +258,7 @@ class PhpDebugSession extends vscode.DebugSession {
258258 }
259259
260260 public sendResponse ( response : VSCodeDebugProtocol . Response ) {
261- const log = `-> ${ response . command } Response\n${ util . inspect ( response , { depth : null } ) } \n\n` ;
261+ const log = `<- ${ response . command } Response\n${ util . inspect ( response , { depth : null } ) } \n\n` ;
262262 console [ response . success ? 'log' : 'error' ] ( log ) ;
263263 if ( this . _args && this . _args . log ) {
264264 this . sendEvent ( new vscode . OutputEvent ( log , response . success ? 'stdout' : 'stderr' ) ) ;
You can’t perform that action at this time.
0 commit comments