本文整理汇总了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 _ =>
}
}
}
}
开发者ID:eltimn,项目名称:sbt-frontend,代码行数:50,代码来源:FrontendTask.scala
注:本文中的org.slf4j.impl.StaticLoggerBinder类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论