wvlet.log.LogSupport.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airspec_2.12 Show documentation
Show all versions of airspec_2.12 Show documentation
AirSpec: A Functional Testing Framework for Scala
The 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 - 2025 Weber Informatics LLC | Privacy Policy