Excerpts from Kevin Wilson's message of 2016-10-18 11:41:21 +0300: > Helo, Tinath, > Thanks for your quick repsonse. It did help. After some trials I found out > that > LOG.error messages from stevedore/extension.py are shown in > /var/log/nova-compute.log > However, I cannot find where I can set the log level to be "info" (so > that LOG.info messages will be displayed). > > I looked by: > > more /etc/nova/nova-compute.conf | grep extension > gives nothing, and also > more /etc/nova/nova-compute.conf | grep stevedore > gives nothing
One way to do it would be to change the default for the default_log_levels configuration option [1]. Keep in mind that the value of the option is all that's used, so if you want the existing behavior to be retained you should copy the default and add stevedore=INFO to it. Doug [1] http://docs.openstack.org/developer/oslo.log/opts.html#DEFAULT.default_log_levels > > > Any ideas ? > Kevin > > > > On Mon, Oct 17, 2016 at 8:39 PM, Trinath Somanchi > <[email protected]> wrote: > > /var/logs. check there.. > > > > ________________________________ > > From: Kevin Wilson <[email protected]> > > Sent: Monday, October 17, 2016 8:05:54 PM > > To: [email protected] > > Subject: [Openstack] Location of log messages for stevedore extensions in > > OpenStack > > > > Hello, > > I have a machine on which openstack runs and it uses stevedore API, > > see for example: > > https://github.com/openstack/stevedore/blob/master/stevedore/extension.py > > > > My question is: > > In the exension.py file of stevedore, there are loggin messages, like > > ... > > LOG.debug('found extension %r', ep) > > ... > > > > What is the location of the log file to which these messages are written ? > > > > Regards, > > Kevin > > > > _______________________________________________ > > Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack > > Post to : [email protected] > > Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack > _______________________________________________ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack Post to : [email protected] Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
