Commit ed61287b authored by Nick Craver's avatar Nick Craver

Tests: Cluster.SimpleProfiling: add logging

We're getting an extra in prod...need to figure out what it is. I'm betting a heartbeat in there.
parent a010a1fe
...@@ -597,6 +597,10 @@ public void SimpleProfiling() ...@@ -597,6 +597,10 @@ public void SimpleProfiling()
Assert.Equal("world", val); Assert.Equal("world", val);
var msgs = profiler.FinishProfiling(); var msgs = profiler.FinishProfiling();
foreach (var msg in msgs)
{
Log("Profiler Message: " + Environment.NewLine + msg.ToString());
}
Log("Checking GET..."); Log("Checking GET...");
Assert.Contains(msgs, m => m.Command == "GET"); Assert.Contains(msgs, m => m.Command == "GET");
Log("Checking SET..."); Log("Checking SET...");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment