Skip to content

Commit

Permalink
Turn back on environments logging
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonm1 committed Jul 30, 2019
1 parent caa9fbf commit 24f42b3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/scala/ai/tripl/arc/config/ArcPipeline.scala
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ object ArcPipeline {
val lifecyclePluginsOrErrors = resolveConfigPlugins(resolvedConfig, "plugins.lifecycle", arcContext.lifecyclePlugins)(spark, logger, arcContext)
val pipelinePluginsOrErrors = resolveConfigPlugins(resolvedConfig, "stages", arcContext.pipelineStagePlugins)(spark, logger, arcContext)


(lifecyclePluginsOrErrors, pipelinePluginsOrErrors) match {
case (Left(lifecycleErrors), Left(pipelineErrors)) => Left(lifecycleErrors.reverse ::: pipelineErrors.reverse)
case (Right(_), Left(pipelineErrors)) => Left(pipelineErrors.reverse)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/ai/tripl/arc/config/Plugins.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object Plugins {

// skip stage if not in environment
if (!arcContext.ignoreEnvironments && !environments.contains(arcContext.environment.get)) {
logger.trace()
logger.info()
.field("event", "validateConfig")
.field("type", pluginType.right.getOrElse("unknown"))
.field("stageIndex", index)
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version := "2.0.0"
version := "2.0.1"

0 comments on commit 24f42b3

Please sign in to comment.