diff --git a/apps/cli/executables/pexable/vela/vela/forger.py b/apps/cli/executables/pexable/vela/vela/forger.py
index c32107c64f37aa9852afbb0cc918ffc15769c110..ff097bfa3a0f49092fa1325d321747ca45dee1ae 100644
--- a/apps/cli/executables/pexable/vela/vela/forger.py
+++ b/apps/cli/executables/pexable/vela/vela/forger.py
@@ -39,7 +39,7 @@ class VelaLog:
         # forging three files. 2 for pipeline completion, 1 log file
         # vela-pipeline.sh.out.txt
         # vela-pipeline.sh.err.txt
-        # vela-<date_as_string>-<timestring>.log
+        # casa-<date_as_string>-<timestring>.log
 
         workflow_name = parameters["workflowName"]
         should_fail = parameters["fail"]
@@ -71,7 +71,7 @@ class VelaLog:
         datestring = arrow.now().format("YYYYMMDD")
         timestring = arrow.utcnow().format("hhmmss")
 
-        log = open(f"vela-{datestring}-{timestring}.log", "w")
+        log = open(f"casa-{datestring}-{timestring}.log", "w")
         log.write(forged_content(self.product_type, should_fail))
         log.close()
 
@@ -194,7 +194,7 @@ class VelaProduct:
 
         datestring = arrow.now().format("YYYYMMDD")
         timestring = arrow.utcnow().format("hhmmss")
-        dirname = f"pipeline-{datestring}-{timestring}"
+        dirname = f"pipeline-{datestring}T{timestring}"
         os.mkdir(dirname)
         os.chdir(path + "/" + dirname)
         os.mkdir("html")