Skip to content

Commit

Permalink
Fixed MessageLoggingModule - constructs failure messages correctly now
Browse files Browse the repository at this point in the history
  • Loading branch information
mattburton committed Feb 11, 2011
1 parent d86986e commit ed5fa25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rhino.ServiceBus/MessageModules/MessageLoggingModule.cs
Expand Up @@ -118,7 +118,8 @@ private void SendInSingleTransaction(object msg)
{
var message = new Message
{
Label = msg.ToString()
Label = msg.ToString(),
Extension = Guid.NewGuid().ToByteArray()
};
messageSerializer.Serialize(new[]{msg},message.BodyStream);
queue.SendInSingleTransaction(message);
Expand Down

0 comments on commit ed5fa25

Please sign in to comment.