File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -123,11 +123,7 @@ class RustPlugin {
123
123
let rustFunctionsFound = false ;
124
124
this . functions ( ) . forEach ( funcName => {
125
125
const func = service . getFunction ( funcName ) ;
126
- console . log ( "func" ) ;
127
- console . log ( func ) ;
128
126
const runtime = func . runtime || service . provider . runtime ;
129
- console . log ( "runtime" ) ;
130
- console . log ( runtime ) ;
131
127
if ( runtime != RUST_RUNTIME ) {
132
128
// skip functions which don't apply to rust
133
129
return ;
@@ -160,10 +156,8 @@ class RustPlugin {
160
156
`target/lambda/${ "dev" === profile ? "debug" : "release" } ` ,
161
157
binary + ".zip"
162
158
) ;
163
- console . log ( `art ${ artifactPath } ` ) ;
164
159
func . package = func . package || { } ;
165
160
func . package . artifact = artifactPath ;
166
- console . log ( `package ${ func . package } ` ) ;
167
161
168
162
// Ensure the runtime is set to a sane value for other plugins
169
163
if ( func . runtime == RUST_RUNTIME ) {
You can’t perform that action at this time.
0 commit comments