VOL-402 : Update fluentd formatter to use default formatter

Change-Id: I0571d34d2459fb0f523abb5e9f4dc2097e016848
diff --git a/ofagent/ofagent.production.yml b/ofagent/ofagent.production.yml
index 0aa89d0..e812cf4 100644
--- a/ofagent/ofagent.production.yml
+++ b/ofagent/ofagent.production.yml
@@ -13,6 +13,9 @@
           level: '%(levelname)s'
           hostname: '%(hostname)s'
           where: '%(module)s.%(funcName)s'
+      fluent_default:
+        format: '%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(module)s.%(funcName)s %(message)s'
+        datefmt: '%Y%m%dT%H%M%S'
 
     handlers:
         fluent:
@@ -20,7 +23,10 @@
             host: localhost
             port: 24224
             tag: ofagent.logging
-            formatter: fluent_fmt
+            # Since fluent formatter output an exception with grpc data, use
+            # a basic formatter for now.
+            # formatter: fluent_fmt
+            formatter: fluent_default
             level: INFO
         null:
             class: logging.NullHandler