diff options
author | Michael E Brown <mebrown@michaels-house.net> | 2007-12-11 21:17:11 -0600 |
---|---|---|
committer | Michael E Brown <mebrown@michaels-house.net> | 2007-12-11 21:17:11 -0600 |
commit | 006ebd8eb222bd332df40a08a9a6f934a4b9bc9e (patch) | |
tree | ade194bfc2a9d1ac9430f1587955d000d9535df9 /py/mock/util.py | |
parent | 69ee351eef2843392b82e97234398130d571693a (diff) | |
download | mock-006ebd8eb222bd332df40a08a9a6f934a4b9bc9e.tar.gz mock-006ebd8eb222bd332df40a08a9a6f934a4b9bc9e.tar.xz mock-006ebd8eb222bd332df40a08a9a6f934a4b9bc9e.zip |
demote setarch log msg back to debug() since we now have a warning for when it doesnt run.
Diffstat (limited to 'py/mock/util.py')
-rw-r--r-- | py/mock/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mock/util.py b/py/mock/util.py index cbb3653..86608da 100644 --- a/py/mock/util.py +++ b/py/mock/util.py @@ -209,7 +209,7 @@ def condPersonality(per=None): res = _libc.personality(personality_defs[per]) if res == -1: raise OSError(_errno.value, os.strerror(_errno.value)) - getLog().info("Ran setarch '%s'" % per) + getLog().debug("Ran setarch '%s'" % per) CLONE_NEWNS = 0x00020000 |