2 Commits

Author SHA1 Message Date
hugh 62a88fd045 ignoring neovim configs 2025-12-09 19:04:24 +00:00
hugh 548386407f missing logback? 2025-11-20 13:14:21 +00:00
2 changed files with 37 additions and 1 deletions
+4 -1
View File
@@ -7,4 +7,7 @@ nbactions.xml
*.log
docker.sock
.DS_Store
.settings/
.classpath
.factorypath
.project
+33
View File
@@ -0,0 +1,33 @@
import static ch.qos.logback.classic.Level.DEBUG
import static ch.qos.logback.classic.Level.INFO
import static ch.qos.logback.classic.Level.ALL
import ch.qos.logback.classic.encoder.PatternLayoutEncoder
import ch.qos.logback.core.rolling.RollingFileAppender
import ch.qos.logback.core.rolling.TimeBasedRollingPolicy
import java.nio.charset.Charset
def patternString = '%d{YYYY-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg %ex{20}%n'
def userHome = System.getProperty("user.home")
appender("applicationLogFile", RollingFileAppender) {
rollingPolicy(TimeBasedRollingPolicy) {
fileNamePattern = "$userHome/.unicenta/unicenta-%d{yyyy-MM-dd}.log"
maxHistory = "5"
}
encoder(PatternLayoutEncoder) {
charset = Charset.forName("UTF-8")
pattern = patternString
}
}
appender('console', ConsoleAppender) {
encoder(PatternLayoutEncoder) {
pattern = patternString
}
}
logger('com.unicenta', DEBUG)
root(DEBUG, ['console', 'applicationLogFile'])