quickbooks connector

quickbooks connector

I have written a function to push new customer data to qb using the sample script that zoho gives.  the issue is I get a success message upon execution... but it also gives me the following response:

Executed Successfully
Log messages:
java.lang.Object@39c90431

    the code:
    1. void qbooks.newCustomer(string customer_r_ID)
    2. {
    3. for each  rec in Customers[ID == customer_r_ID.toLong()]
    4. {
    5. //Declare Map Variable to hold the customer details
    6. Customer_Details = Map();
    7. //Add the customer details to the map variable
    8. Customer_Details.put("GivenName",rec.First_Name);
    9. Customer_Details.put("FamilyName",rec.Last_Name);
    10. Customer_Details.put("CompanyName",rec.Account_Name);
    11. Customer_Details.put("DisplayName",rec.Account_Name);
    12. createResponse = intuit.quickbooks.create("quickbooks","Customer","XXXX",Customer_Details);
    13. info createResponse;
    14. }
    15. }