Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 9c8571a

Browse files
committed
Add stream.Write log prefix
1 parent 01604b8 commit 9c8571a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ServiceStack.Redis/RedisNativeClient_Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ protected void SendUnmanagedExpectSuccess(params byte[][] cmdWithBinaryArgs)
409409
}
410410

411411
if (log.IsDebugEnabled && RedisConfig.EnableVerboseLogging)
412-
logDebug(Encoding.UTF8.GetString(bytes, 0, Math.Min(bytes.Length, 50)).Replace("\r\n"," ").SafeSubstring(0,50));
412+
logDebug("stream.Write: " + Encoding.UTF8.GetString(bytes, 0, Math.Min(bytes.Length, 50)).Replace("\r\n"," ").SafeSubstring(0,50));
413413

414414
Bstream.Write(bytes, 0, bytes.Length);
415415

0 commit comments

Comments
 (0)