You can disable those messages setting the logging level that you prefer.
I use logback and my configuration file is:
$ cat src/main/resources/props/default.logback.xml
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -
%msg%n</Pattern>
</layout>
</appender>
<logger name="code.snippet" level="info"/>
<logger name="code.api" level="info"/>
<logger name="code.model" level="info"/>
<logger name="code.comet" level="info"/>
<logger name="code.lib" level="info"/>
<root level="error">
<appender-ref ref="STDOUT" />
</root>
</configuration>
I hope it helps
Diego
On Wed, Jun 1, 2011 at 11:58 PM, aa <agai...@gmail.com> wrote:
> Following the example from http://www.assembla.com/spaces/liftweb/wiki/Using_Maven
>
> I generate a project using
>
> mvn archetype:generate \
> -DarchetypeGroupId=net.liftweb \
> -DarchetypeArtifactId=lift-archetype-basic_2.8.1 \
> -DarchetypeYou caVersion=2.3 \
> --
> You received this message because you are subscribed to the Google Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com.
> To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
>
>
--
Diego Medina
Web Developer
http://www.fmpwizard.com
+1