aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-10-20 13:35:08 -0300
committerDiego <diegolparra@gmail.com>2014-10-20 13:35:08 -0300
commit10fae64a0528016a93a1b943b9810b1066d5f3d0 (patch)
tree5960d96aa70094aaef4a34eb921067c324fbe996 /kamon-core/src/main/scala
parentcabcd24b92d2ccbb82c24fbf658b2390d6e9cf89 (diff)
downloadKamon-10fae64a0528016a93a1b943b9810b1066d5f3d0.tar.gz
Kamon-10fae64a0528016a93a1b943b9810b1066d5f3d0.tar.bz2
Kamon-10fae64a0528016a93a1b943b9810b1066d5f3d0.zip
! kamon-core: Remove KamonWeaverMessageHandler to avoid dependencies issues and closes #97
Diffstat (limited to 'kamon-core/src/main/scala')
-rw-r--r--kamon-core/src/main/scala/kamon/weaver/logging/KamonWeaverMessageHandler.scala61
1 files changed, 0 insertions, 61 deletions
diff --git a/kamon-core/src/main/scala/kamon/weaver/logging/KamonWeaverMessageHandler.scala b/kamon-core/src/main/scala/kamon/weaver/logging/KamonWeaverMessageHandler.scala
deleted file mode 100644
index 12f7f549..00000000
--- a/kamon-core/src/main/scala/kamon/weaver/logging/KamonWeaverMessageHandler.scala
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * =========================================================================================
- * Copyright © 2013-2014 the kamon project <http://kamon.io/>
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the
- * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
- * either express or implied. See the License for the specific language governing permissions
- * and limitations under the License.
- * =========================================================================================
- */
-
-package kamon.weaver.logging
-
-import org.aspectj.bridge.{ IMessage, IMessageHandler }
-import com.typesafe.config.ConfigFactory
-import java.util.logging.Logger
-
-/**
- * Implementation of AspectJ's IMessageHandler interface that routes AspectJ weaving messages and controls them through kamon configuration.
- */
-class KamonWeaverMessageHandler extends IMessageHandler {
- import IMessage._
-
- private val log = Logger.getLogger("AspectJ Weaver")
- private val conf = ConfigFactory.load().getConfig("kamon.weaver")
-
- private val isVerbose = conf.getBoolean("verbose")
- private val isDebug = conf.getBoolean("debug")
- private val showWeaveInfo = conf.getBoolean("showWeaveInfo")
- private val showWarn = conf.getBoolean("showWarn")
-
- def handleMessage(message: IMessage) = message.getKind match {
- case WEAVEINFO if showWeaveInfo ⇒ showMessage(message)
- case DEBUG if isDebug ⇒ showMessage(message)
- case WARNING if showWarn ⇒ showMessage(message)
- case DEBUG if isDebug ⇒ showMessage(message)
- case INFO if isVerbose ⇒ showMessage(message)
- case ERROR ⇒ showErrorMessage(message)
- case _ ⇒ false
- }
-
- def isIgnoring(kind: IMessage.Kind): Boolean = false // We want to see everything.
- def dontIgnore(kind: IMessage.Kind) = {}
- def ignore(kind: IMessage.Kind) = {}
-
- private def showMessage(msg: IMessage): Boolean = {
- log.info(msg.getMessage)
- true
- }
-
- private def showErrorMessage(msg: IMessage): Boolean = {
- log.severe(msg.getMessage)
- true
- }
-}
-