From 43e837e5d80c193b58188bc1439b082a9fc680ea Mon Sep 17 00:00:00 2001
From: Wolfgang Welz <welzwo@gmail.com>
Date: Wed, 8 Jan 2020 21:09:05 +0100
Subject: [PATCH] fix: add logger config to config.json

---
 config.json | 47 +++++++++++++++++++++++++++--------------------
 1 file changed, 27 insertions(+), 20 deletions(-)

diff --git a/config.json b/config.json
index b86b4944..1b885d18 100644
--- a/config.json
+++ b/config.json
@@ -1,28 +1,35 @@
 {
-  "node": {
-    "logLevel": 3,
-    "disablePlugins": [],
-    "enablePlugins": []
+  "analysis":{
+    "serveraddress":"ressims.iota.cafe:188",
+    "serverport":0
   },
-  "database": {
-    "directory": "mainnetdb"
-  },
-  "analysis": {
-    "serverPort": 0,
-    "serverAddress": "ressims.iota.cafe:188"
+  "autopeering":{
+    "address":"0.0.0.0",
+    "entrynodes":[
+      "V8LYtWWcPYYDTTXLeIEFjJEuWlsjDiI0+Pq/Cx9ai6g=@116.202.49.178:14626"
+    ],
+    "port":14626,
+    "selection":true
   },
-  "gossip": {
-    "port": 14666
+  "database":{
+    "directory":"mainnetdb"
   },
-  "zeromq": {
-    "port": 5556
+  "gossip":{
+    "port":14666
   },
-  "autopeering": {
-    "address": "0.0.0.0",
-    "port": 14626,
-    "entryNodes": [
-      "V8LYtWWcPYYDTTXLeIEFjJEuWlsjDiI0+Pq/Cx9ai6g=@116.202.49.178:14626"
+  "logger":{
+    "Level":"info",
+    "DisableCaller":false,
+    "DisableStacktrace":false,
+    "Encoding":"console",
+    "OutputPaths":[
+      "stdout"
     ],
-    "selection": true
+    "DisableEvents":false
+  },
+  "node":{
+    "disableplugins":"",
+    "enableplugins":"",
+    "loglevel":0
   }
 }
\ No newline at end of file
-- 
GitLab