<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/nova.git/nova/debugger.py, branch master</title>
<subtitle>opendev.org: openstack/nova.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/'/>
<entry>
<title>trivial: Remove remaining '_LW' instances</title>
<updated>2020-05-18T16:00:41+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephenfin@redhat.com</email>
</author>
<published>2020-05-18T15:56:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=3a28b0e7717145bfb336138fb74a015913195725'/>
<id>3a28b0e7717145bfb336138fb74a015913195725</id>
<content type='text'>
There are only a few of these remaining in the code base. Remove them.

Change-Id: I33725e2439b0f39c1e9bec9e33a37bf3e24944fb
Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are only a few of these remaining in the code base. Remove them.

Change-Id: I33725e2439b0f39c1e9bec9e33a37bf3e24944fb
Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use oslo_log instead of logging</title>
<updated>2016-05-27T12:18:32+00:00</updated>
<author>
<name>Zhihai Song</name>
<email>zhihai.song@easystack.cn</email>
</author>
<published>2015-12-25T07:56:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=6df327694fa782a6a23e1057f8d5db402793b777'/>
<id>6df327694fa782a6a23e1057f8d5db402793b777</id>
<content type='text'>
Some modules can be converted to use oslo_log instead of logging
lib.

Change-Id: I00a676ef266f47590f8c46d4a1a4eb876ab1f27d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some modules can be converted to use oslo_log instead of logging
lib.

Change-Id: I00a676ef266f47590f8c46d4a1a4eb876ab1f27d
</pre>
</div>
</content>
</entry>
<entry>
<title>Config options: Centralize debugger options</title>
<updated>2016-03-29T16:18:51+00:00</updated>
<author>
<name>Pushkar Umaranikar</name>
<email>pushkar.umaranikar@intel.com</email>
</author>
<published>2016-01-30T00:44:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=888be36d6959ea7e6ac216d1c3f435dcab153fd9'/>
<id>888be36d6959ea7e6ac216d1c3f435dcab153fd9</id>
<content type='text'>
The config options of the "nova/debugger" got
moved to the new central location
"nova/conf/remote_debug.py"

Implements: blueprint centralize-config-options-newton

Change-Id: Ic0c858aac92c95dc20992c06218f9823e7e683e5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The config options of the "nova/debugger" got
moved to the new central location
"nova/conf/remote_debug.py"

Implements: blueprint centralize-config-options-newton

Change-Id: Ic0c858aac92c95dc20992c06218f9823e7e683e5
</pre>
</div>
</content>
</entry>
<entry>
<title>Use min and max on IntOpt option types</title>
<updated>2015-08-14T04:37:21+00:00</updated>
<author>
<name>Eric Brown</name>
<email>browne@vmware.com</email>
</author>
<published>2015-08-13T07:06:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=ec59ea8db7cc4aa6f4751a12483b179677369a7a'/>
<id>ec59ea8db7cc4aa6f4751a12483b179677369a7a</id>
<content type='text'>
The latest oslo.config supports a minimum and maximum value for
IntOpt options.  This patch utilizes this for a number of options
with well known ranges.

Change-Id: I897d8870fdf67a095915c8fcdf239024b092e9e3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The latest oslo.config supports a minimum and maximum value for
IntOpt options.  This patch utilizes this for a number of options
with well known ranges.

Change-Id: I897d8870fdf67a095915c8fcdf239024b092e9e3
</pre>
</div>
</content>
</entry>
<entry>
<title>Use oslo.log</title>
<updated>2015-02-22T12:56:40+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>davanum@gmail.com</email>
</author>
<published>2015-02-09T22:28:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=97d63d8745cd9b3b391ce96b94b4da263b3a053d'/>
<id>97d63d8745cd9b3b391ce96b94b4da263b3a053d</id>
<content type='text'>
Convert the use of the incubated version of the log module
to the new oslo.log library.

Sync oslo-incubator modules to update their imports as well.

Co-Authored-By: Doug Hellmann &lt;doug@doughellmann.com&gt;
Change-Id: Ic4932e3f58191869c30bd07a010a6e9fdcb2a12c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert the use of the incubated version of the log module
to the new oslo.log library.

Sync oslo-incubator modules to update their imports as well.

Co-Authored-By: Doug Hellmann &lt;doug@doughellmann.com&gt;
Change-Id: Ic4932e3f58191869c30bd07a010a6e9fdcb2a12c
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to using oslo_* instead of oslo.*</title>
<updated>2015-02-06T11:03:10+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>dims@linux.vnet.ibm.com</email>
</author>
<published>2015-01-11T03:26:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=af2d6c9576b1ac5f3b3768870bb15d9b5cf1610b'/>
<id>af2d6c9576b1ac5f3b3768870bb15d9b5cf1610b</id>
<content type='text'>
The oslo team is recommending everyone to switch to the
non-namespaced versions of libraries. Updating the hacking
rule to include a check to prevent oslo.* import from
creeping back in.

This commit includes:
- using oslo_utils instead of oslo.utils
- using oslo_serialization instead of oslo.serialization
- using oslo_db instead of oslo.db
- using oslo_i18n instead of oslo.i18n
- using oslo_middleware instead of oslo.middleware
- using oslo_config instead of oslo.config
- using oslo_messaging instead of "from oslo import messaging"
- using oslo_vmware instead of oslo.vmware

Change-Id: I3e2eb147b321ce3e928817b62abcb7d023c5f13f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The oslo team is recommending everyone to switch to the
non-namespaced versions of libraries. Updating the hacking
rule to include a check to prevent oslo.* import from
creeping back in.

This commit includes:
- using oslo_utils instead of oslo.utils
- using oslo_serialization instead of oslo.serialization
- using oslo_db instead of oslo.db
- using oslo_i18n instead of oslo.i18n
- using oslo_middleware instead of oslo.middleware
- using oslo_config instead of oslo.config
- using oslo_messaging instead of "from oslo import messaging"
- using oslo_vmware instead of oslo.vmware

Change-Id: I3e2eb147b321ce3e928817b62abcb7d023c5f13f
</pre>
</div>
</content>
</entry>
<entry>
<title>Replacement `_` on `_LW` in all LOG.warning part 1</title>
<updated>2014-11-20T09:19:16+00:00</updated>
<author>
<name>Mike Durnosvistov</name>
<email>mdurnosvistov@mirantis.com</email>
</author>
<published>2014-09-19T15:32:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=e8c0b822f0ef4164d3752a1d8307b55fe4183a3c'/>
<id>e8c0b822f0ef4164d3752a1d8307b55fe4183a3c</id>
<content type='text'>
oslo.i18n uses different marker functions to separate the
translatable messages into different catalogs, which the translation
teams can prioritize translating. For details, please refer to:
http://docs.openstack.org/developer/oslo.i18n/guidelines.html#guidelines-for-use-in-openstack

There were not marker fuctions some places in directory network.
This commit makes changes:
* Add missing marker functions
* Use ',' instead of '%' while adding variables to log messages

Added a hacking rule for the warning about checking
translation for it and checking logging level `warning` instead
alias `warn`.

Change-Id: I2bced49dc5a0408a94d5d20d85b20c682886edbe
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
oslo.i18n uses different marker functions to separate the
translatable messages into different catalogs, which the translation
teams can prioritize translating. For details, please refer to:
http://docs.openstack.org/developer/oslo.i18n/guidelines.html#guidelines-for-use-in-openstack

There were not marker fuctions some places in directory network.
This commit makes changes:
* Add missing marker functions
* Use ',' instead of '%' while adding variables to log messages

Added a hacking rule for the warning about checking
translation for it and checking logging level `warning` instead
alias `warn`.

Change-Id: I2bced49dc5a0408a94d5d20d85b20c682886edbe
</pre>
</div>
</content>
</entry>
<entry>
<title>Use oslo.i18n</title>
<updated>2014-07-18T18:28:09+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>dims@linux.vnet.ibm.com</email>
</author>
<published>2014-07-12T01:03:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=826aed0ec7e59d52d515a86569b6e23b08c6c072'/>
<id>826aed0ec7e59d52d515a86569b6e23b08c6c072</id>
<content type='text'>
oslo.i18n provides the i18n functions that were provided by
oslo-incubator's gettextutils module. Some tests that were
using internal details of the library were removed.

Change-Id: I44cfd5552e0dd86af21073419d31622f5fdb28e0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
oslo.i18n provides the i18n functions that were provided by
oslo-incubator's gettextutils module. Some tests that were
using internal details of the library were removed.

Change-Id: I44cfd5552e0dd86af21073419d31622f5fdb28e0
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't translate debug level logs in nova</title>
<updated>2014-06-13T08:07:48+00:00</updated>
<author>
<name>Gary Kotton</name>
<email>gkotton@vmware.com</email>
</author>
<published>2014-06-12T08:40:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=4dcf093236aa9492668695a9a085a61f2a886685'/>
<id>4dcf093236aa9492668695a9a085a61f2a886685</id>
<content type='text'>
Our translation policy
(https://wiki.openstack.org/wiki/LoggingStandards#Log_Translation) calls
for not translating debug level logs. This is to help prioritize log
translation. Furthermore translation has a performance overhead, even if
the log isn't used (since nova doesn't support lazy translation yet).

This is the final patch ensuring that all fines in the nova directory
no longer have translations for debug messages.

Change-Id: Ib10f5826e2238cbb2d4315c48be570eb31b2ea55
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Our translation policy
(https://wiki.openstack.org/wiki/LoggingStandards#Log_Translation) calls
for not translating debug level logs. This is to help prioritize log
translation. Furthermore translation has a performance overhead, even if
the log isn't used (since nova doesn't support lazy translation yet).

This is the final patch ensuring that all fines in the nova directory
no longer have translations for debug messages.

Change-Id: Ib10f5826e2238cbb2d4315c48be570eb31b2ea55
</pre>
</div>
</content>
</entry>
<entry>
<title>Support multi-version pydevd</title>
<updated>2014-04-23T20:43:37+00:00</updated>
<author>
<name>kiwik-chenrui</name>
<email>chenrui.momo@gmail.com</email>
</author>
<published>2014-04-23T20:43:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/nova.git/commit/?id=512bde53649ea9738e101c1729c3e2f40eb655e1'/>
<id>512bde53649ea9738e101c1729c3e2f40eb655e1</id>
<content type='text'>
We need to support multi-version pydevd
in order to supporting pycharm3 and pydev3 remote debug.
If we want to remote debug by pydev3 or pycharm3,
"from pydev import pydev" is not work,
need to "import pydevd" directly.

Change-Id: I975c859c46f81d7fe1ca3dfebe05040153471800
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to support multi-version pydevd
in order to supporting pycharm3 and pydev3 remote debug.
If we want to remote debug by pydev3 or pycharm3,
"from pydev import pydev" is not work,
need to "import pydevd" directly.

Change-Id: I975c859c46f81d7fe1ca3dfebe05040153471800
</pre>
</div>
</content>
</entry>
</feed>
