From 34cadc4264462cc652648e07bf320ead89500d2a Mon Sep 17 00:00:00 2001
From: Michele Sollecito <michele.sollecito@gmail.com>
Date: Mon, 29 Oct 2018 16:21:35 +0000
Subject: [PATCH] Fixed broken default logging level. (#4129)

---
 config/dev/log4j2.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/dev/log4j2.xml b/config/dev/log4j2.xml
index e1054be8ae..3ed3eea003 100644
--- a/config/dev/log4j2.xml
+++ b/config/dev/log4j2.xml
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<Configuration status="debug">
+<Configuration status="info">
 
     <Properties>
         <Property name="log-path">${sys:log-path:-logs}</Property>
         <Property name="log-name">node-${hostName}</Property>
         <Property name="archive">${log-path}/archive</Property>
         <Property name="defaultLogLevel">${sys:log4j2.level:-info}</Property>
-        <Property name="consoleLogLevel">${sys:consoleLogLevel:-$defaultLogLevel}</Property>
-        <Property name="fileLogLevel">${sys:fileLogLevel:-$defaultLogLevel}</Property>
+        <Property name="consoleLogLevel">${sys:consoleLogLevel:-error}</Property>
+        <Property name="fileLogLevel">${sys:fileLogLevel:-${defaultLogLevel}}</Property>
     </Properties>
 
     <Appenders>