All Downloads are FREE. Search and download functionalities are using the official Maven repository.

wvlet.log.LogSupport.scala Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
/*
 * 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 wvlet.log

import scala.language.experimental.macros

/**
  * Trait for adding logging methods (error, warn, info, debug and trace) to your class
  */
trait LogSupport extends LoggingMethods with LazyLogger

/**
  * Trait for adding logging methods and an initialized logger instance
  */
trait LocalLogSupport extends LoggingMethods with LocalLogger

/**
  * Trait for adding a local logger instance to your class
  */
trait LazyLogger {
  protected[this] lazy val logger: Logger = Logger(LogEnv.getLoggerName(this.getClass))
}

/**
  * Trait for adding an initialized logger instance to your class
  */
trait LocalLogger {
  protected[this] val logger: Logger = Logger(LogEnv.getLoggerName(this.getClass))
}

trait PublicLoggingMethods extends Serializable { p =>
  protected[this] def logger: Logger
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy