@@ -42,7 +42,7 @@ private object LoggerMacro {
4242 import c .universe ._
4343 val underlying = q " ${c.prefix}.underlying "
4444 if (args.length == 2 )
45- q " if ( $underlying.isErrorEnabled) $underlying.error( $message, List( ${args(0 )}, ${args(1 )}): _*) "
45+ q " if ( $underlying.isErrorEnabled) $underlying.error( $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
4646 else
4747 q " if ( $underlying.isErrorEnabled) $underlying.error( $message, .. $args) "
4848 }
@@ -62,7 +62,7 @@ private object LoggerMacro {
6262 import c .universe ._
6363 val underlying = q " ${c.prefix}.underlying "
6464 if (args.length == 2 )
65- q " if ( $underlying.isErrorEnabled) $underlying.error( $marker, $message, List( ${args(0 )}, ${args(1 )}): _*) "
65+ q " if ( $underlying.isErrorEnabled) $underlying.error( $marker, $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
6666 else
6767 q " if ( $underlying.isErrorEnabled) $underlying.error( $marker, $message, .. $args) "
6868 }
@@ -84,7 +84,7 @@ private object LoggerMacro {
8484 import c .universe ._
8585 val underlying = q " ${c.prefix}.underlying "
8686 if (args.length == 2 )
87- q " if ( $underlying.isWarnEnabled) $underlying.warn( $message, List( ${args(0 )}, ${args(1 )}): _*) "
87+ q " if ( $underlying.isWarnEnabled) $underlying.warn( $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
8888 else
8989 q " if ( $underlying.isWarnEnabled) $underlying.warn( $message, .. $args) "
9090 }
@@ -104,7 +104,7 @@ private object LoggerMacro {
104104 import c .universe ._
105105 val underlying = q " ${c.prefix}.underlying "
106106 if (args.length == 2 )
107- q " if ( $underlying.isWarnEnabled) $underlying.warn( $marker, $message, List( ${args(0 )}, ${args(1 )}): _*) "
107+ q " if ( $underlying.isWarnEnabled) $underlying.warn( $marker, $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
108108 else
109109 q " if ( $underlying.isWarnEnabled) $underlying.warn( $marker, $message, .. $args) "
110110 }
@@ -126,7 +126,7 @@ private object LoggerMacro {
126126 import c .universe ._
127127 val underlying = q " ${c.prefix}.underlying "
128128 if (args.length == 2 )
129- q " if ( $underlying.isInfoEnabled) $underlying.info( $message, List( ${args(0 )}, ${args(1 )}): _*) "
129+ q " if ( $underlying.isInfoEnabled) $underlying.info( $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
130130 else
131131 q " if ( $underlying.isInfoEnabled) $underlying.info( $message, .. $args) "
132132 }
@@ -146,7 +146,7 @@ private object LoggerMacro {
146146 import c .universe ._
147147 val underlying = q " ${c.prefix}.underlying "
148148 if (args.length == 2 )
149- q " if ( $underlying.isInfoEnabled) $underlying.info( $marker, $message, List( ${args(0 )}, ${args(1 )}): _*) "
149+ q " if ( $underlying.isInfoEnabled) $underlying.info( $marker, $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
150150 else
151151 q " if ( $underlying.isInfoEnabled) $underlying.info( $marker, $message, .. $args) "
152152 }
@@ -168,7 +168,7 @@ private object LoggerMacro {
168168 import c .universe ._
169169 val underlying = q " ${c.prefix}.underlying "
170170 if (args.length == 2 )
171- q " if ( $underlying.isDebugEnabled) $underlying.debug( $message, List( ${args(0 )}, ${args(1 )}): _*) "
171+ q " if ( $underlying.isDebugEnabled) $underlying.debug( $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
172172 else
173173 q " if ( $underlying.isDebugEnabled) $underlying.debug( $message, .. $args) "
174174 }
@@ -188,7 +188,7 @@ private object LoggerMacro {
188188 import c .universe ._
189189 val underlying = q " ${c.prefix}.underlying "
190190 if (args.length == 2 )
191- q " if ( $underlying.isDebugEnabled) $underlying.debug( $marker, $message, List( ${args(0 )}, ${args(1 )}): _*) "
191+ q " if ( $underlying.isDebugEnabled) $underlying.debug( $marker, $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
192192 else
193193 q " if ( $underlying.isDebugEnabled) $underlying.debug( $marker, $message, .. $args) "
194194 }
@@ -210,7 +210,7 @@ private object LoggerMacro {
210210 import c .universe ._
211211 val underlying = q " ${c.prefix}.underlying "
212212 if (args.length == 2 )
213- q " if ( $underlying.isTraceEnabled) $underlying.trace( $message, List( ${args(0 )}, ${args(1 )}): _*) "
213+ q " if ( $underlying.isTraceEnabled) $underlying.trace( $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
214214 else
215215 q " if ( $underlying.isTraceEnabled) $underlying.trace( $message, .. $args) "
216216 }
@@ -230,7 +230,7 @@ private object LoggerMacro {
230230 import c .universe ._
231231 val underlying = q " ${c.prefix}.underlying "
232232 if (args.length == 2 )
233- q " if ( $underlying.isTraceEnabled) $underlying.trace( $marker, $message, List( ${args(0 )}, ${args(1 )}): _*) "
233+ q " if ( $underlying.isTraceEnabled) $underlying.trace( $marker, $message, _root_.scala. List( ${args(0 )}, ${args(1 )}): _*) "
234234 else
235235 q " if ( $underlying.isTraceEnabled) $underlying.trace( $marker, $message, .. $args) "
236236 }
0 commit comments