Guide: Turing Off Logs

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 :slight_smile: ) 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!

Many obscure errors with no stack trace incoming, yayyy

2 Likes