Skip to content

Commit 69111c6

Browse files
committed
Change data item "thread" to a discrete string value
Closes #1
1 parent 5a56a51 commit 69111c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Eleven41.Logging.Loggly/LogglyLog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void Log(DateTime date, LogLevels level, Dictionary<string, object> messa
4242
Dictionary<string, object> data = new Dictionary<string, object>(this.Data);
4343

4444
// These fields are allowed to be overwritten by the caller
45-
data["thread"] = System.Threading.Thread.CurrentThread.GetHashCode();
45+
data["thread"] = System.Threading.Thread.CurrentThread.GetHashCode().ToString();
4646

4747
// Add the message data
4848
if (messageData != null)

0 commit comments

Comments
 (0)