aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/update.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-20 16:57:57 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-20 17:04:56 +0000
commit9cec14c8a96698d8dff268b14afbcb5610523d27 (patch)
treed9516888f0c982301b4e62c78b6b904205aa403c /layerindex/update.py
parent473c47a2227f971eea026179d87b0d995006744e (diff)
downloadopenembedded-core-contrib-9cec14c8a96698d8dff268b14afbcb5610523d27.tar.gz
update.py: make failure to parse a recipe an error
Ensure that these are still printed when the -q option is used. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'layerindex/update.py')
-rwxr-xr-xlayerindex/update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/layerindex/update.py b/layerindex/update.py
index 7bdbdb2629..338e31d3b7 100755
--- a/layerindex/update.py
+++ b/layerindex/update.py
@@ -110,7 +110,7 @@ def update_recipe_file(data, path, recipe, layerdir_start, repodir):
except BaseException as e:
if not recipe.pn:
recipe.pn = recipe.filename[:-3].split('_')[0]
- logger.info("Unable to read %s: %s", fn, str(e))
+ logger.error("Unable to read %s: %s", fn, str(e))
def update_machine_conf_file(path, machine):
logger.debug('Updating machine %s' % path)