Add .NET version and timestamp on default logger rows by philon-msft · Pull Request #1796 · StackExchange/StackExchange.Redis

@philon-msft

Prefix each entry with a timestamp that looks like:

2021-07-01T18:18:47.9263352Z: cachename.redis.cache.windows.net:6380/Interactive: Connecting...
2021-07-01T18:18:47.9463333Z: cachename.redis.cache.windows.net:6380: BeginConnectAsync
2021-07-01T18:18:47.9483351Z: 1 unique nodes specified

added 2 commits

July 1, 2021 22:24
This also shortens the format to HH:mm:ss.ffff, which is all we need for debugging and it's less to grok. Also prevents double timestamp logging in tests.

@NickCraver NickCraver changed the title Add timestamp on default logger entries Add .NET version and timestamp on default logger rows

Jul 2, 2021

NickCraver