Browse Source

Remove prints

Yentl Van Tendeloo 5 years ago
parent
commit
b93bdf64d6
2 changed files with 0 additions and 2 deletions
  1. 0 1
      bootstrap/core_algorithm.alc
  2. 0 1
      services/HUTN/main.py

+ 0 - 1
bootstrap/core_algorithm.alc

@@ -2078,7 +2078,6 @@ String function cmd_transformation_add_MT(source_models : Element, target_models
 	Float start
 	start = time()
 	new_model = compile_model(input(), get_full_model(ramified_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams")))
-	log("Compile: " + cast_string(time() - start))
 	if (is_physical_string(new_model)):
 		return "Compilation error: " + cast_string(new_model)!
 	model_create(new_model, operation_name, ramified_metamodel_id, "ModelTransformation")

+ 0 - 1
services/HUTN/main.py

@@ -71,7 +71,6 @@ def compile_service(port):
     except Exception as e:
         service_set(port, str(e))
         raise
-    print("Compilation time: " + str(time.time() - start))
 
 try:
     init(sys.argv[1])