diff --git a/packages/ifc2gltf2xgf/ifc2gltf2xgf.js b/packages/ifc2gltf2xgf/ifc2gltf2xgf.js index a1630cddd..4cd47cba0 100755 --- a/packages/ifc2gltf2xgf/ifc2gltf2xgf.js +++ b/packages/ifc2gltf2xgf/ifc2gltf2xgf.js @@ -137,16 +137,12 @@ try { const convertGLTFFiles = (done) => { - console.log("convertGLTFFiles") - let i = 0; const convertNextGLTFFile = () => { const gltfSrc = gltfManifest.gltfOutFiles[i]; - console.log("convertNextGLTFFile: " + gltfSrc) - const gltfFileName = path.basename(gltfSrc); const gltfFullPath = path.join(basePath, gltfFileName); const outputFileName = getFileNameWithoutExtension(gltfSrc); @@ -226,7 +222,7 @@ try { fs.writeFileSync(xgfChunkManifestSrc, JSON.stringify(xgfChunkManifest)); const conversionTime = ((new Date() - startTime) / 1000.0).toFixed(2); logInfo("Conversion time: " + conversionTime + " s"); - logInfo(`Done.`); + logInfo(`Done.\n`); process.exit(0); }