Hello, have you ever wanted to turn off the annoying ugly ass logs in the debug console? Well I have the solution for you!
In your OpenBullet (or BlazeBullet ) folder, Open up the "appsettings.json"
In there, replace everything with the following
{
"ConnectionStrings": {
"DefaultConnection": "Data Source=UserData/OpenBullet.db;"
},
"Logging": {
"LogLevel": {
"Default": "None",
"Microsoft": "None",
"Microsoft.Hosting.Lifetime": "None"
}
}
}
This will turn off all verbose and normal logs that ASP likes to write.
Quick Note: Like Ruri said, This will remove all kind of error debugging hints, use at your own risk
Enjoy!