Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 73bb7dc

Browse files
committed
remove debugging stuff
1 parent 7bad77a commit 73bb7dc

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

site/e2e/helpers.ts

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -263,17 +263,6 @@ export const downloadCoderVersion = async (
263263
return binaryPath;
264264
}
265265

266-
// eslint-disable-next-line no-console
267-
console.log(
268-
"--- KAYLA LOOK HERE THIS IS THE THING STUFF ---\n",
269-
version,
270-
"-",
271-
tempDir,
272-
"-",
273-
binaryName,
274-
"-",
275-
);
276-
277266
// Run our official install script to install the binary
278267
await new Promise<void>((resolve, reject) => {
279268
const cp = spawn(
@@ -292,14 +281,11 @@ export const downloadCoderVersion = async (
292281
env: {
293282
...process.env,
294283
XDG_CACHE_HOME: "/tmp/coder-e2e-cache",
295-
TRACE: "1",
296284
},
297285
},
298286
);
299287
// eslint-disable-next-line no-console -- Needed for debugging
300-
cp.stderr.on("data", (data) =>
301-
console.log("--- KAYLA data from the thing ---\n", data.toString()),
302-
);
288+
cp.stderr.on("data", (data) => console.log(data.toString()));
303289
cp.on("close", (code) => {
304290
if (code === 0) {
305291
resolve();

0 commit comments

Comments
 (0)