[log]: Change entry point name of logging plugin

The name ('logapi') seems redundant 'api' and it looks inconsistent
with entry point name of logging agent extension ('log') and
LoggingPlugin class[1]. So this patch change 'logapi' to 'log' to
make it look consistent.

[1] https://github.com/openstack/neutron/blob/master/neutron/services/logapi/logging_plugin.py#L27

Change-Id: I57d0b86823670a1dc5d116d98059993c802ef86c
Partially-implements: blueprint security-group-logging
Related-Bug: #1468366
This commit is contained in:
Nguyen Phuong An 2017-12-19 14:17:10 +07:00
parent bfd55d86fb
commit 081870b1a5
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ neutron.service_plugins =
timestamp = neutron.services.timestamp.timestamp_plugin:TimeStampPlugin
trunk = neutron.services.trunk.plugin:TrunkPlugin
loki = neutron.services.loki.loki_plugin:LokiPlugin
logapi = neutron.services.logapi.logging_plugin:LoggingPlugin
log = neutron.services.logapi.logging_plugin:LoggingPlugin
neutron.ml2.type_drivers =
flat = neutron.plugins.ml2.drivers.type_flat:FlatTypeDriver
local = neutron.plugins.ml2.drivers.type_local:LocalTypeDriver