File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
strategy :
11
11
matrix :
12
- node-version : [12 .x]
12
+ node-version : [14 .x]
13
13
python-version : [3.0]
14
14
env :
15
15
BRANCH : production
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ const ProjectSaveHOC = (WrappedComponent) => {
76
76
await this . saveMeta ( )
77
77
} catch ( e ) {
78
78
if ( ! this . requestCancelSave ) {
79
- console . log ( "error save :" , e )
79
+ console . warn ( "error in saving :" , e )
80
80
errPromise = this . setError ( 'Das hat leider nicht geklappt' )
81
81
} else {
82
82
errPromise = Promise . reject ( )
@@ -92,8 +92,6 @@ const ProjectSaveHOC = (WrappedComponent) => {
92
92
}
93
93
94
94
saveAssets ( ) {
95
- console . log ( "inside save assets" )
96
-
97
95
const costumeAssets = serializeCostumes ( this . props . vm . runtime )
98
96
const soundAssets = serializeSounds ( this . props . vm . runtime )
99
97
return Promise . all (
@@ -110,10 +108,9 @@ const ProjectSaveHOC = (WrappedComponent) => {
110
108
filename : asset . fileName ,
111
109
} ) ,
112
110
} )
113
-
114
- console . log ( "save assets res" , res )
115
111
116
112
if ( ! res . ok && res . status !== 409 ) {
113
+ console . warn ( "save assets error response" , res )
117
114
throw new Error ( `uploading an asset failed: ${ asset . fileName } ` )
118
115
}
119
116
You can’t perform that action at this time.
0 commit comments