diff --git a/henchman/task.go b/henchman/task.go
index 39b71ae..148c62f 100644
--- a/henchman/task.go
+++ b/henchman/task.go
@@ -45,8 +45,8 @@ func setTaskResult(taskResult *TaskResult, buf *bytes.Buffer) error {
 	//fmt.Printf("DEBUG: taskresult - %s - length - %d\n", resultStr, len(resultStr))
 	err := json.Unmarshal(resultInBytes, &taskResult)
 	if err != nil {
-		// Temp fix for current end of json input bug
 		return HenchErr(err, map[string]interface{}{
+			"len":   len(resultInBytes),
 			"input": ":" + resultStr + ":",
 		}, "Task result json string")
 	}