From 5d92a277383a38aaa8505e4a4234763d5e7f7e5c Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 18 Jan 2016 21:57:14 +0100 Subject: [PATCH] [DEBUG] remove some bad log --- lutin/system.py | 2 +- lutin/z_target/lutinTarget_Android.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lutin/system.py b/lutin/system.py index 9dcbce3..2f327a2 100644 --- a/lutin/system.py +++ b/lutin/system.py @@ -140,7 +140,7 @@ def exist(lib_name, target_name, target) : theSystem = __import__(env.get_build_system_base_name() + __start_system_name + target_name + "_" + data["name"]) #create the system module try: - debug.info("call : " + data["name"]) + debug.verbose("SYSTEM: request: " + data["name"]) data["system"] = theSystem.System(target) data["exist"] = data["system"].valid except: diff --git a/lutin/z_target/lutinTarget_Android.py b/lutin/z_target/lutinTarget_Android.py index 0b03ac2..e4beeb9 100644 --- a/lutin/z_target/lutinTarget_Android.py +++ b/lutin/z_target/lutinTarget_Android.py @@ -28,7 +28,6 @@ class Target(target.Target): self.type_arch = "" target.Target.__init__(self, "Android", config, self.type_arch) - debug.warning("plop " + str(self.ar)) if config["bus-size"] == "32": self.type_arch="armv7" else: @@ -277,7 +276,7 @@ class Target(target.Target): pkg_name_application_name = pkg_name if self.config["mode"] == "debug": pkg_name_application_name += "debug" - debug.info("ploppppp: " + str(pkg_properties)) + #debug.info("ploppppp: " + str(pkg_properties)) # FINAL_path_JAVA_PROJECT self.path_java_project = os.path.join(target_outpath, "src")