Skip to content

Commit

Permalink
delete debug logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
ttakahari committed Jul 11, 2017
1 parent c2dc487 commit f565dcf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/FluentdClient.Sharp.MessagePack/MessagePackSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,7 @@ public byte[] Serialize<T>(string tag, T message) where T : class
Message = message
};

var bytes = global::MessagePack.MessagePackSerializer.Serialize(payload, MultipleFormatterResolver.Instance);

var json = global::MessagePack.MessagePackSerializer.ToJson(bytes);

return bytes;
return global::MessagePack.MessagePackSerializer.Serialize(payload, MultipleFormatterResolver.Instance);
}
}

Expand Down

0 comments on commit f565dcf

Please sign in to comment.