Interaction with other Vostok libraries
Context + ClusterClient
Context + Logging
var log = new ConsoleLog().WithContextualPrefix();
using (new ContextualLogPrefix("op-1"))
{
log.Info("Message 1!");
using (new ContextualLogPrefix("op-2"))
{
log.Info("Message 2!");
}
log.Info("Message 3!");
}
ConsoleLog.Flush();Context + Tracing
Last updated
Was this helpful?