Skip to content

Commit 6113ed4

Browse files
committed
fix: remove console log
1 parent be75fc1 commit 6113ed4

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jotforminc/zenith",
33
"packageManager": "pnpm@7.18.0",
4-
"version": "1.2.1",
4+
"version": "1.2.2",
55
"description": "",
66
"main": "./build/index.js",
77
"files": [

src/classes/Cache/Cacher.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ export default abstract class Cacher {
123123
}
124124
const cachePath = `${target}/${hash}/${root}`;
125125
if (this.isDebug()) Logger.log(1, `Caching output ${directoryPath} to ${cachePath}`);
126-
if (root.includes('inbox')) {
127-
console.log('inbox', cachePath, output, directoryPath);
128-
}
129126
switch (output) {
130127
case 'stdout':
131128
await this.cacheTxt(cachePath, output, commandOutput);

0 commit comments

Comments
 (0)