]> git.e2factory.org Git - e2factory.git/commitdiff
remove noisy debug output
authorTobias Ulmer <tu@emlix.com>
Fri, 17 Jun 2016 15:15:25 +0000 (17:15 +0200)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:18 +0000 (15:41 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
generic/e2lib.lua
local/e2tool.lua

index cbdb0a2a3fea68a0cbb20042e476079bd7102926..3f5cd1464b7446f6327ffcbf9374808864086e49 100644 (file)
@@ -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
index fc3d646a139dd326f555736fb3971efd110daf93..1dd46a2d0f82a6a9a7cef376b442fac5d32bd067 100644 (file)
@@ -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