本文整理汇总了Scala中org.slf4j.impl.StaticLoggerBinder类的典型用法代码示例。如果您正苦于以下问题:Scala StaticLoggerBinder类的具体用法?Scala StaticLoggerBinder怎么用?Scala StaticLoggerBinder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了StaticLoggerBinder类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Scala代码示例。
示例1: FrontendInputTask
//设置package包名称以及导入依赖的类
package sbtfrontend
import sbt._
import Keys._
import complete.DefaultParsers._
import org.slf4j.impl.StaticLoggerBinder
import net.liftweb.common._
import com.github.eirslett.maven.plugins.frontend.lib._
import FrontendPlugin.autoImport.FrontendKeys.{frontendFactory, nodeProxies}
object FrontendInputTask {
def apply(
key: InputKey[Unit],
func: (FrontendPluginFactory, String) => Box[Unit]
): Def.Initialize[InputTask[Unit]] = {
Def.inputTask {
val args = spaceDelimited("<arg>").parsed
val log = streams.value.log
StaticLoggerBinder.sbtLogger = log
func((frontendFactory in key).value, args.mkString(" ")) match {
case Failure(msg, Full(e), _) => throw e
case _ =>
}
}
}
}
object FrontendProxyInputTask {
def apply(
key: InputKey[Unit],
func: (FrontendPluginFactory, String, Seq[ProxyConfig.Proxy]) => Box[Unit]
): Def.Initialize[InputTask[Unit]] = {
Def.inputTask {
val args = spaceDelimited("<arg>").parsed
val log = streams.value.log
StaticLoggerBinder.sbtLogger = log
func(
(frontendFactory in key).value,
args.mkString(" "),
(nodeProxies in key).value
) match {
case Failure(msg, Full(e), _) => throw e
case _ =>
}
}
}
}