diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-27 11:05:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-02 23:01:21 +0100 |
commit | e6ed2e07d70eaa07d4c2ab9e484eacedd193323e (patch) | |
tree | e12b0ec63d74bafc43039696c8db70bc8e34992b /scripts/lib | |
parent | 36be9c1f7a6fded146a6f1c268455d826d78f97b (diff) | |
download | openembedded-core-e6ed2e07d70eaa07d4c2ab9e484eacedd193323e.tar.gz openembedded-core-e6ed2e07d70eaa07d4c2ab9e484eacedd193323e.tar.bz2 openembedded-core-e6ed2e07d70eaa07d4c2ab9e484eacedd193323e.zip |
wic: Remove annoing debug message
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>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/plugin.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py index fff02c063b..d714b6d7a9 100644 --- a/scripts/lib/wic/plugin.py +++ b/scripts/lib/wic/plugin.py @@ -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: |