Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit 07721a4

Browse files
Rollback logback version
1 parent 741b201 commit 07721a4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies {
4444
// Logging
4545
implementation("io.github.microutils", "kotlin-logging", "2.0.11")
4646
implementation("org.slf4j", "slf4j-api", "2.0.0alpha5")
47-
implementation("ch.qos.logback", "logback-classic", "1.4.7")
47+
implementation("ch.qos.logback", "logback-classic", "1.3.0-alpha5")
4848
implementation(platform("io.sentry:sentry-bom:7.9.0"))
4949
implementation(platform("io.sentry:sentry-bom:7.9.0"))
5050
implementation("io.sentry", "sentry")

docker-compose.develop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ services:
88
- "5432:5432"
99
environment:
1010
POSTGRES_PASSWORD: "DevcordRoxx2021"
11+
bot:
12+
build: .
13+
volumes:
14+
- .env:/usr/app/.env
15+
- ./src/main/resources/logback.xml:/usr/app/logback.xml

src/main/kotlin/com/github/devcordde/devcordbot/core/DevCordBotImpl.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,6 @@ internal class DevCordBotImpl(
197197

198198
newSuspendedTransaction {
199199
SchemaUtils.createMissingTablesAndColumns(Users, Tags, TagAliases)
200-
//language=PostgreSQL
201-
exec("SELECT * FROM pg_extension WHERE extname = 'pg_trgm'") { rs ->
202-
//language=text
203-
require(rs.next()) { "pg_tgrm extension must be available. See https://dba.stackexchange.com/a/165301" }
204-
}
205200
}
206201
}
207202

0 commit comments

Comments
 (0)