From 7701483e2aecbf8db59d1c4b00043b0b61bed87b Mon Sep 17 00:00:00 2001 From: Roey Chen Date: Tue, 28 Mar 2017 02:37:11 -0700 Subject: [PATCH] Removing irrelevant note in README file Since log translations are dropped (I9d37ae28a3fecbe910e60dc7f22e229a7b65940c), this notes are no longer relevant. Change-Id: I4863cdf044fa012bba4dc0d4de949c8723abdc76 --- vmware_nsx_tempest/README.rst | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/vmware_nsx_tempest/README.rst b/vmware_nsx_tempest/README.rst index e62a44cdcf..d7092834a2 100644 --- a/vmware_nsx_tempest/README.rst +++ b/vmware_nsx_tempest/README.rst @@ -89,19 +89,4 @@ Modules within vmware_nsx_tempest can not see resources defined by vmware_nsx. Commands like following are not acceptable, unless vmware_nsx is installed in your tempest environment:: - from vmware_nsx._i18n import _LE import vmware_nsx.shell.admin.plugins.common.utils as admin_utils - -TechNote on logging: --------------------- -tempest repo itself does not enforce LOG complying to _i18n. -So for tempest tests for vmware-nsx, that is vmware_nsx_tempest, -use LOG.debug() command. - -However, if you need to log other than debug level, please do:: - - from vmware_nsx_tempest._i18n import _LI - from vmware_nsx_tempest._i18n import _LE - from vmware_nsx_tempest._i18n import _LW - -Customize it depending on the log level your scripts will use.