diff options
author | kshithijiyer <kshithij.ki@gmail.com> | 2020-07-23 17:12:36 +0530 |
---|---|---|
committer | kshithijiyer <kshithij.ki@gmail.com> | 2020-07-23 17:31:00 +0530 |
commit | 21ea1866884bf538fd1a4bee5257c747cd5f41b1 (patch) | |
tree | cdd0f4158aa1e6aa6659523090bc03ccf44106d2 /glustolibs-gluster/glustolibs/gluster | |
parent | 7a78a835422de108fa19b50c86df11456175f61e (diff) |
[Libfix] Change warn to info
Fixes: https://github.com/gluster/glusto-tests/issues/21
Change-Id: I08115a2c11d657cdcb0ab0cc4fe9be697c947a8f
Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'glustolibs-gluster/glustolibs/gluster')
-rw-r--r-- | glustolibs-gluster/glustolibs/gluster/gluster_base_class.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py b/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py index aa6aca669..0acfa59ed 100644 --- a/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py +++ b/glustolibs-gluster/glustolibs/gluster/gluster_base_class.py @@ -1054,7 +1054,7 @@ class GlusterBaseClass(TestCase): if (self.error_or_failure_exists or self._is_error_or_failure_exists()): ret = self.scratch_cleanup(self.error_or_failure_exists) - g.log.warn(ret) + g.log.info(ret) return self.get_super_method(self, 'doCleanups')() @classmethod @@ -1063,5 +1063,5 @@ class GlusterBaseClass(TestCase): cls._is_error_or_failure_exists()): ret = cls.scratch_cleanup( GlusterBaseClass.error_or_failure_exists) - g.log.warn(ret) + g.log.info(ret) return cls.get_super_method(cls, 'doClassCleanups')() |