From 081870b1a58caf954188a5788b76d2f7e28e799d Mon Sep 17 00:00:00 2001
From: Nguyen Phuong An <AnNP@vn.fujitsu.com>
Date: Tue, 19 Dec 2017 14:17:10 +0700
Subject: [PATCH] [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
---
 setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index 55822a81b74..0f99f49db50 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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