我创建了以下groovy脚本,以展示如何使用简单的注释将日志字段注入到我们的类中
// File: LogSlf4j.groovy
// Add dependencies for Slf4j API and Logback
@Grapes([
@Grab(group='org.slf4j', module='slf4j-api', version='1.6.1'),
@Grab(group='ch.qos.logback', module='logback-classic', version='0.9.28')
])
import org.slf4j.*
import groovy.util.logging.Slf4j
// Use annotation to inject log field into the class.
@Slf4j
class faimily{
def father() {
log.debug 'car engine is hot'
log.error 'my car is stuck'
}
def mother() {
log.debug 'dont have a water in the kitchen'
log.error 'Cant make a cake'
}
}
def helloWorld = new faimily()
helloWorld.father()
helloWorld.mother()
当我运行groovy脚本时,我得到以下结果(在GROOVY CONSOLE上)
17:58:50.938 [Thread-59] DEBUG faimily - car engine is hot
17:58:50.938 [Thread-59] ERROR faimily - my car is stuck
17:58:50.938 [Thread-59] DEBUG faimily - dont have a water in the kitchen
17:58:50.938 [Thread-59] ERROR faimily - Cant make a cake
请告知我们如何将结果打印到WIN机器中的日志文件中,以及需要添加到我的groovy脚本中才能启用它?
例如:
日志文件
C:\ Program Files \ LOGS \ my.groovy.log
(应包含结果:)
17:58:50.938 [Thread-59] DEBUG faimily - car engine is hot
17:58:50.938 [Thread-59] ERROR faimily - my car is stuck
17:58:50.938 [Thread-59] DEBUG faimily - dont have a water in the kitchen
17:58:50.938 [Thread-59] ERROR faimily - Cant make a cake
答案 0 :(得分:3)
这对我有用:
@Grab('org.slf4j:slf4j-api:1.6.1')
@Grab('ch.qos.logback:logback-classic:0.9.28')
import org.slf4j.*
import groovy.util.logging.Slf4j
import ch.qos.logback.core.*
import ch.qos.logback.classic.encoder.*
// Use annotation to inject log field into the class.
@Slf4j
class Family {
static {
new FileAppender().with {
name = 'file appender'
file = 'C:\\tmp\\groovy.log'
context = LoggerFactory.getILoggerFactory()
encoder = new PatternLayoutEncoder().with {
context = LoggerFactory.getILoggerFactory()
pattern = "%date{HH:mm:ss.SSS} [%thread] %-5level %logger{35} - %msg%n"
start()
it
}
start()
log.addAppender(it)
}
}
def father() {
log.debug 'car engine is hot'
log.error 'my car is stuck'
}
def mother() {
log.debug 'dont have a water in the kitchen'
log.error 'Cant make a cake'
}
}
def helloWorld = new Family()
helloWorld.father()
helloWorld.mother()