From patchwork Wed Jan 30 14:00:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [03/17] sstate: Move debug comment to more logical place Date: Wed, 30 Jan 2013 14:00:56 -0000 From: Richard Purdie X-Patchwork-Id: 43695 Message-Id: <0f303a349d4dd899e68c5356d4cac1319bce6eb0.1359554291.git.richard.purdie@linuxfoundation.org> To: openembedded-core@lists.openembedded.org The same log message gets output multiple times in the log which look confusing and is rather pointless. Move the log message to the correct level. Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index edddd2f..a79d2b5 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -146,8 +146,8 @@ def sstate_install(ss, d): locks.append(bb.utils.lockfile(lock)) for state in ss['dirs']: + bb.debug(2, "Staging files from %s to %s" % (state[1], state[2])) for walkroot, dirs, files in os.walk(state[1]): - bb.debug(2, "Staging files from %s to %s" % (state[1], state[2])) for file in files: srcpath = os.path.join(walkroot, file) dstpath = srcpath.replace(state[1], state[2])