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