Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
steam0r committed Dec 2, 2024
1 parent 100ac5b commit 26f40ee
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions shared/api/utils/shared_ops_util.js
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,6 @@ export default class SharedOpsUtil extends SharedUtil
fileName = this._filesUtil.realSanitizeFilename(fileName);
const opDir = this.getOpAbsolutePath(opName);
const absoluteFile = path.join(opDir, fileName);
console.log("jeje", fileName, absoluteFile);
try
{
fs.writeFileSync(absoluteFile, buffer);
Expand Down Expand Up @@ -3581,8 +3580,6 @@ export default class SharedOpsUtil extends SharedUtil
const myUrl = new URL(this._cables.getConfig().url);
envUrls.forEach((envUrl) => { promises.push(fetch(envUrl)); });

console.log("promises", promises.length);

const envDocs = {
"id": null,
"name": null,
Expand All @@ -3601,8 +3598,6 @@ export default class SharedOpsUtil extends SharedUtil
{
results.forEach((result, i) =>
{
console.log("result", result);

if (result.opDocs && result.opDocs.length > 0)
{
const envName = envUrls[i].hostname;
Expand All @@ -3613,9 +3608,7 @@ export default class SharedOpsUtil extends SharedUtil
if (!envDocs.name) envDocs.name = envDoc.name;
}
});
console.log("envDocs1", envDocs.environments);
envDocs.environments = this._helperUtil.uniqueArray(envDocs.environments);
console.log("envDocs2", envDocs.environments);
cb(null, envDocs);
});
}
Expand Down

0 comments on commit 26f40ee

Please sign in to comment.