Minor fix for pushing fabric VLANs

Change-Id: I9f27cb24df147c64051d6da66cc9c392d063246c
diff --git a/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java b/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java
index 21603d5..ce26786 100644
--- a/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java
+++ b/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java
@@ -432,9 +432,9 @@
                 .type(JSON_UTF_8.toString());
 
         try {
-            builder.post(ClientResponse.class, node);
+            builder.post(ClientResponse.class, node.toString());
         } catch (ClientHandlerException e) {
-            log.warn("Unable to contact fabric REST server:", e.getMessage());
+            log.warn("Unable to contact fabric REST server: {}", e.getMessage());
             return;
         }
     }