File tree Expand file tree Collapse file tree 3 files changed +1
-13
lines changed
Expand file tree Collapse file tree 3 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -10080,9 +10080,6 @@ class Deployment {
1008010080 } catch (error) {
1008110081 core.error(error.stack)
1008210082
10083- // output raw error in debug mode.
10084- core.debug(JSON.stringify(error))
10085-
1008610083 // build customized error message based on server response
1008710084 if (error.response) {
1008810085 let errorMessage = `Failed to create deployment (status: ${error.status}) with build version ${this.buildVersion}. `
@@ -10163,9 +10160,6 @@ class Deployment {
1016310160 } catch (error) {
1016410161 core.error(error.stack)
1016510162
10166- // output raw error in debug mode.
10167- core.debug(JSON.stringify(error))
10168-
1016910163 // build customized error message based on server response
1017010164 if (error.response) {
1017110165 errorStatus = error.status || error.response.status
Original file line number Diff line number Diff line change @@ -80,9 +80,6 @@ class Deployment {
8080 } catch ( error ) {
8181 core . error ( error . stack )
8282
83- // output raw error in debug mode.
84- core . debug ( JSON . stringify ( error ) )
85-
8683 // build customized error message based on server response
8784 if ( error . response ) {
8885 let errorMessage = `Failed to create deployment (status: ${ error . status } ) with build version ${ this . buildVersion } . `
@@ -163,9 +160,6 @@ class Deployment {
163160 } catch ( error ) {
164161 core . error ( error . stack )
165162
166- // output raw error in debug mode.
167- core . debug ( JSON . stringify ( error ) )
168-
169163 // build customized error message based on server response
170164 if ( error . response ) {
171165 errorStatus = error . status || error . response . status
You can’t perform that action at this time.
0 commit comments