Skip to content

Commit e7bb7f9

Browse files
author
Andrew Klitzke
committed
ready
1 parent b66b458 commit e7bb7f9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

index.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,7 @@ class RustPlugin {
123123
let rustFunctionsFound = false;
124124
this.functions().forEach(funcName => {
125125
const func = service.getFunction(funcName);
126-
console.log("func");
127-
console.log(func);
128126
const runtime = func.runtime || service.provider.runtime;
129-
console.log("runtime");
130-
console.log(runtime);
131127
if (runtime != RUST_RUNTIME) {
132128
// skip functions which don't apply to rust
133129
return;
@@ -160,10 +156,8 @@ class RustPlugin {
160156
`target/lambda/${"dev" === profile ? "debug" : "release"}`,
161157
binary + ".zip"
162158
);
163-
console.log(`art ${artifactPath}`);
164159
func.package = func.package || {};
165160
func.package.artifact = artifactPath;
166-
console.log(`package ${func.package}`);
167161

168162
// Ensure the runtime is set to a sane value for other plugins
169163
if (func.runtime == RUST_RUNTIME) {

0 commit comments

Comments
 (0)