From: Tobias Ulmer Date: Fri, 17 Jun 2016 15:15:25 +0000 (+0200) Subject: remove noisy debug output X-Git-Tag: e2factory-2.3.15rc1~150 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=d7b850dcd93064c45fe8aa9dc83d02fd7556303e;p=e2factory.git remove noisy debug output Signed-off-by: Tobias Ulmer --- diff --git a/generic/e2lib.lua b/generic/e2lib.lua index cbdb0a2..3f5cd14 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -1588,7 +1588,6 @@ function e2lib.locate_project_root(path) end while true do if e2lib.exists(".e2") then - e2lib.logf(3, "project is located in: %s", path) e2lib.chdir(save_path) return path end diff --git a/local/e2tool.lua b/local/e2tool.lua index fc3d646..1dd46a2 100644 --- a/local/e2tool.lua +++ b/local/e2tool.lua @@ -111,14 +111,12 @@ end --- set umask to value used for build processes -- @param info function e2tool.set_umask(info) - e2lib.logf(4, "setting umask to %04o", info.chroot_umask) e2lib.umask(info.chroot_umask) end -- set umask back to the value used on the host -- @param info function e2tool.reset_umask(info) - e2lib.logf(4, "setting umask to %04o", info.host_umask) e2lib.umask(info.host_umask) end