不同的groovy shell冗长级别意味着什么?

时间:2012-06-12 16:44:38

标签: groovy

org.codehaus.groovy.tools.shell.IO有四个详细程度,但并不清楚它们的作用。哪个是系统默认值? 它们之间有什么区别?到目前为止我唯一注意到的是,如果将Verbosity设置为安静,Groovysh将不会在shell中打印最后返回的语句...

package org.codehaus.groovy.tools.shell.IO

public static final Verbosity QUIET = new Verbosity("QUIET");

public static final Verbosity INFO = new Verbosity("INFO");

public static final Verbosity VERBOSE = new Verbosity("VERBOSE");

public static final Verbosity DEBUG = new Verbosity("DEBUG");

1 个答案:

答案 0 :(得分:0)

看起来默认为INFO,而is set here

根据等级看起来它是used here to set the colour of the output。但是,我只是对代码进行了简要的介绍和讨论,可能是错误的,或者错过了什么。