From b7e77b11ad2c9924dc6126a5c9eb3a5d9e1cb9da Mon Sep 17 00:00:00 2001 From: Arif Amirani Date: Thu, 12 Jan 2012 15:02:19 +0530 Subject: [PATCH] Fixed some spacing to make README more legible --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7213794..317462a 100644 --- a/README.md +++ b/README.md @@ -225,17 +225,17 @@ This was mainly created for [cluster](https://github.com/LearnBoost/cluster), bu A gelf logger has been added to log4js, by [arifamirani](https://github.com/arifamirani). This allows log4js to log to [GELF](http://www.graylog2.org/about/gelf) compatible servers such as [Graylog](http://www.graylog2.org/). This is currently configuration based and needs the following configuration to be added to log4j.json. For example:
-    {
-        "appenders": [  
-            {
-                "type": "gelf",
-                "host": "logs.mydomain.com", //defaults to localhost
-                "hostname":"mrs-dev", //defaults to the value returned by os.hostname()
-                "port": "12201", //defaults to 12201
-                "facility": "myapp" //defaults to nodejs-server
-            }
-        }
+  {
+    "appenders": [  
+      {
+        "type": "gelf",
+        "host": "logs.mydomain.com", //defaults to localhost
+        "hostname":"mrs-dev", //defaults to the value returned by os.hostname()
+        "port": "12201", //defaults to 12201
+        "facility": "myapp" //defaults to nodejs-server
+      }
     }
+  }
 
## author (of this node version)