'logs.level' not declared in the schema

Hey @BrutalBirdie

Welcome to our community forums!

I realized you’re using version 0.117.0 based on the logs you provided and the logging feature was implemented and released on version 0.118.0.

This is the reason you’re getting these errors. Upgrading should solve the issue.

I have a very similar file on my computer that works fine:

{
    "database": {
        "type": "postgresdb",
        "postgresdb": {
            "host": "localhost",
			"password": "***",
			"user": "postgres",
			"schema": "public"
        }
    },
    "logs": {
        "level": "debug"
    }
}
2 Likes