mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-11-16 16:12:32 +01:00
Change logging and update spotless
This commit is contained in:
parent
dfd6777b45
commit
35567bba1d
@ -4,7 +4,7 @@ plugins {
|
||||
id "org.jetbrains.kotlin.kapt" version "1.4.0"
|
||||
id "application"
|
||||
id "com.github.johnrengelman.shadow" version "5.2.0"
|
||||
id "com.diffplug.gradle.spotless" version "4.4.0"
|
||||
id "com.diffplug.spotless" version "5.2.0"
|
||||
id "dev.afanasev.sekret" version "0.0.7"
|
||||
}
|
||||
|
||||
|
@ -121,11 +121,9 @@ class ImageServer(
|
||||
}
|
||||
)
|
||||
} catch (e: JsonProcessingException) {
|
||||
println(e)
|
||||
LOGGER.info(e) { "Request for $sanitizedUri rejected for invalid token" }
|
||||
return@then Response(Status.FORBIDDEN)
|
||||
}
|
||||
println(token)
|
||||
|
||||
if (OffsetDateTime.now().isAfter(token.expires)) {
|
||||
LOGGER.info { "Request for $sanitizedUri rejected for expired token" }
|
||||
@ -276,11 +274,9 @@ class ImageServer(
|
||||
if (editor.getLength(0) == contentLength.toLong()) {
|
||||
LOGGER.info { "Cache download for $sanitizedUri committed" }
|
||||
editor.commit()
|
||||
println("A")
|
||||
cache.flush()
|
||||
} else {
|
||||
LOGGER.warn { "Cache download for $sanitizedUri aborted" }
|
||||
println("B")
|
||||
editor.abort()
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
|
@ -8,8 +8,8 @@
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
|
||||
<fileNamePattern>log/logFile.%d{yyyy-MM-dd_HH}.%i.log</fileNamePattern>
|
||||
<maxHistory>12</maxHistory>
|
||||
<maxFileSize>100MB</maxFileSize>
|
||||
<totalSizeCap>1GB</totalSizeCap>
|
||||
<maxFileSize>32MB</maxFileSize>
|
||||
<totalSizeCap>256MB</totalSizeCap>
|
||||
</rollingPolicy>-->
|
||||
|
||||
<encoder>
|
||||
|
Loading…
Reference in New Issue
Block a user