diff options
author | Rajamohan Raj <rajamohan.raj@intel.com> | 2020-08-29 02:47:00 +0000 |
---|---|---|
committer | Rajamohan Raj <rajamohan.raj@intel.com> | 2020-09-09 21:25:53 +0000 |
commit | 4759e43ff7f29727477b0d928047bf5ca283cef1 (patch) | |
tree | ebed9009ab8bcb28aeb07b495eab08a161150299 /src/orchestrator/config.json | |
parent | bca6932e54ff0495947d8a4f1862339a69d386f8 (diff) |
Add log level support for orchestrator
In this patch, a new config item for log-level
is added, default log-level is set as "warn",
for detailed logs, set log-level as "info"
Issue-ID: MULTICLOUD-1200
Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com>
Change-Id: I3205ce110a492ecc6a7c680e3d35e173a5624bb0
Diffstat (limited to 'src/orchestrator/config.json')
-rw-r--r-- | src/orchestrator/config.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/orchestrator/config.json b/src/orchestrator/config.json new file mode 100644 index 00000000..1acd835d --- /dev/null +++ b/src/orchestrator/config.json @@ -0,0 +1,16 @@ +{ + "ca-file": "ca.cert", + "server-cert": "server.cert", + "server-key": "server.key", + "password": "", + "database-ip": "172.31.0.2", + "database-type": "mongo", + "plugin-dir": "plugins", + "etcd-ip": "127.0.0.1", + "etcd-cert": "", + "etcd-key": "", + "etcd-ca-file": "", + "service-port": "9015", + "log-level": "warn" + +} |