Skip to content

Commit 37b0026

Browse files
authored
Update index.js
1 parent 521038a commit 37b0026

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function installSFDX(){
1515
var install = './sfdx/install'
1616
exec(download+' && '+createDir+' && '+unzip+' && '+install, function(error, stdout, stderr){
1717
if(error) throw(stderr)
18-
console.log(stdout)
18+
core.debug(stdout)
1919
if(core.getInput('sfdx-auth-url')) createAuthFile()
2020
})
2121
}
@@ -29,7 +29,7 @@ function authSFDX(){
2929
var params = '--setdefaultdevhubusername --setdefaultusername -a SFDX-ENV'
3030
exec('sfdx force:auth:sfdxurl:store -f ./sfdx_auth.txt '+params, function(error, stdout, stderr){
3131
if(error) throw(stderr)
32-
console.log(stdout)
32+
core.debug(stdout)
3333
})
3434
}
3535

0 commit comments

Comments
 (0)