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:08:36 +0100 |
commit | 9ca3472f4f02dbcb7dd9f326efc4ca576355be31 (patch) | |
tree | c6d479a3635bbb023ee958ae6583f08f23c2d7ed /scripts/lib | |
parent | 1cabf091fc64e1858fbc35bd498b82c349a7149b (diff) | |
download | poky-9ca3472f4f02dbcb7dd9f326efc4ca576355be31.tar.gz |
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.
(From OE-Core rev: e6ed2e07d70eaa07d4c2ab9e484eacedd193323e)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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): | |||
74 | path = os.path.abspath(os.path.expanduser(path)) | 74 | path = os.path.abspath(os.path.expanduser(path)) |
75 | 75 | ||
76 | if not os.path.isdir(path): | 76 | if not os.path.isdir(path): |
77 | msger.debug("Plugin dir is not a directory or does not exist: %s"\ | ||
78 | % path) | ||
79 | return | 77 | return |
80 | 78 | ||
81 | if path not in self.plugin_dirs: | 79 | if path not in self.plugin_dirs: |