File tree 2 files changed +3
-2
lines changed
actions/submit-signing-request
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,6 @@ export class Task {
306
306
core . debug ( log . message ) ;
307
307
break ;
308
308
case LogLevelInformation :
309
- console . log ( 'asdasdasdasdasd' ) ;
310
309
core . info ( log . message ) ;
311
310
break ;
312
311
case LogLevelWarning :
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { HelperInputOutput } from '../helper-input-output';
9
9
import { HelperArtifactDownload } from '../helper-artifact-download' ;
10
10
import axiosRetry from 'axios-retry' ;
11
11
import { Config } from '../config' ;
12
+ import { log } from 'console' ;
12
13
13
14
const testSignPathApiToken = 'TEST_TOKEN' ;
14
15
const testSigningRequestId = 'TEST_ID' ;
@@ -59,7 +60,8 @@ beforeEach(() => {
59
60
isFinalStatus : true ,
60
61
status : 'Completed' ,
61
62
unsignedArtifactLink : testUnsignedArtifactLink ,
62
- signedArtifactLink : testSignedArtifactLink
63
+ signedArtifactLink : testSignedArtifactLink ,
64
+ logs : [ { message : 'TEST_MESSAGE' , level : 'Information' } ]
63
65
} ;
64
66
65
67
const getSigningRequestResponse = submitSigningRequestResponse ;
You can’t perform that action at this time.
0 commit comments