add log to finalize
diff --git a/images/js/helpers/gold.js b/images/js/helpers/gold.js
index 7abe842..4d961c1 100644
--- a/images/js/helpers/gold.js
+++ b/images/js/helpers/gold.js
@@ -51,9 +51,13 @@
 const finalize = async () => {
   try {
     // finalizes the process
-    await execToPromise('goldctl imgtest finalize --work-dir ./tmp');
+    const response = await execToPromise('goldctl imgtest finalize --work-dir ./tmp');
+    console.log('IMAGE FINALIZE');
+    console.log(response);
   } catch (error) {
     //
+    console.log('FINALIZE ERROR');
+    console.log(error);
   }
 };