I have the Blazor component library, I need to debug it. The library can be used in Blazor WASM and Blazor Server-Side Apps. For debug purposes I do some console output:
Console.WriteLine("Hello!")
In the Blazor WASM app I can see it in the Browser Console.
Where can I see it in case of Blazor Server-Side App? Is using of the Debug.WriteLine method the only way to see the output? Is there a common way to write debug information for both Blazor WASM and Server-Side?
PS: There is no Console output in Debug window in case of Blazor Server-Side App.