gpt4 book ai didi

Grails:如何在 cmd 控制台中打印?

转载 作者:行者123 更新时间:2023-12-04 04:45:57 25 4
gpt4 key购买 nike

我想在控制台中打印一些值,我该怎么做?

每次我进入一个函数时,我都希望它用任何文本打印一行,我只想知道我是否进入了该函数,以及一些 if-else 语句。
主要用于调试。

最佳答案

您可能需要考虑内置日志功能的 grails,它提供与 println 相同的功能以及更多

http://grails.github.io/grails-doc/3.0.x/guide/single.html#logging

在您的应用程序中只需说

log.info "Hello World"

每次你在 Controller 中输入一个 Action 时打印一些东西,你可以做这样的事情
class UserController {

def beforeInterceptor = {
log.info "Entering Action ${actionUri}"
}

def index = {
}

def listContributors = {
}
}

由于 controller interceptor,每当输入 Controller 方法时,这都会打印到日志中。

关于Grails:如何在 cmd 控制台中打印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3894107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com