cross-posted from: https://programming.dev/post/8419041
Iβm just trying out the built-in builder.Logging.AddDebug(); in a MAUI app, but donβt see the output anywhere. From several blogs I expected to see the messages in the Visual Studio Debug output window, but they arenβt appearing.
Just using the stock-standard MAUI app, the only changes I have made are in App.cs as followsβ¦
using Microsoft.Extensions.Logging; using Microsoft.Maui.Controls; namespace BaseMAUIApp; internal class App :Application { public App(ILogger<App> logger) { logger.LogDebug("******************* Message from logger!"); // rest of code...
But I donβt see my message anywhere. Is there something else I have to configure, or somewhere else I have to look?
No comments yet!