]> code.ossystems Code Review - openembedded-core.git/commitdiff
wic: Remove annoing debug message
authorEd Bartosh <ed.bartosh@linux.intel.com>
Sat, 27 Jun 2015 08:05:19 +0000 (11:05 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Jul 2015 22:01:21 +0000 (23:01 +0100)
Wic tries to find plugins in every layer and prints a message
'Plugin dir is not a directory or does not exist' if layer
doesn't have plugin dir. It causes a lot of duplicated
messages in the debug output, which makes it hard to find
useful info there.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
scripts/lib/wic/plugin.py

index fff02c063bf022e891e41219a9a823997eac9031..d714b6d7a96ac9888b84bc7a072275034bf40731 100644 (file)
@@ -74,8 +74,6 @@ class PluginMgr(object):
         path = os.path.abspath(os.path.expanduser(path))
 
         if not os.path.isdir(path):
-            msger.debug("Plugin dir is not a directory or does not exist: %s"\
-                          % path)
             return
 
         if path not in self.plugin_dirs: