aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/logger/Logger.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/logger/Logger.scala b/src/main/scala/logger/Logger.scala
index cbbb58c6..a4ec34b1 100644
--- a/src/main/scala/logger/Logger.scala
+++ b/src/main/scala/logger/Logger.scala
@@ -46,7 +46,7 @@ object LogLevel extends Enumeration {
* extend this trait to enable logging in a class you are implementing
*/
trait LazyLogging {
- val logger = new Logger(this.getClass.getName)
+ protected val logger = new Logger(this.getClass.getName)
}
/**