File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
src/proxy/processors/push-action Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,6 @@ if (!fs.existsSync(dir)) {
15
15
16
16
async function exec ( req : any , action : Action ) : Promise < Action > {
17
17
const step = new Step ( 'parsePackFile' ) ;
18
- // change introduced for capturing test data and to base the test on
19
- console . log (
20
- 'Stringified push data: \nreq.body:\n-----------------\n' +
21
- JSON . stringify ( req . body ) +
22
- '\n-----------------\naction:\n-----------------\n' +
23
- JSON . stringify ( action ) +
24
- '\n-----------------\n' ,
25
- ) ;
26
-
27
18
try {
28
19
if ( ! req . body || req . body . length === 0 ) {
29
20
throw new Error ( 'No body found in request' ) ;
@@ -58,7 +49,6 @@ async function exec(req: any, action: Action): Promise<Action> {
58
49
} finally {
59
50
action . addStep ( step ) ;
60
51
}
61
- console . log ( 'action: ' , JSON . stringify ( action , null , 2 ) ) ;
62
52
return action ;
63
53
}
64
54
You can’t perform that action at this time.
0 commit comments