|
var connection = new HubConnectionBuilder()
|
|
.WithUrl("https://example.com/my/hub/url")
|
|
.ConfigureLogging(logging =>
|
|
{
|
|
// Log to the Output Window
|
|
logging.AddDebug();
|
|
|
|
// This will set ALL logging to Debug level
|
|
logging.SetMinimumLevel(LogLevel.Debug)
|
|
})
|
|
.Build(); |