diff options
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 |