941c8d17fd
guacamole-client is the superproject containing all Maven-based projects that make Guacamole, an HTML5 web application that provides access to your desktop using remote desktop protocols. guacamole-client is used to build the subprojects that make up Guacamole, and to provide a common central repository. Each project contained here is completely independent of guacamole-client and can be built separately, though the others may have to be built first. If all projects are built using guacamole-client, Maven will take care of the proper build order. WWW: https://github.com/glyptodon/guacamole-client PR: 202755 Submitted by: ultima1252@gmail.com
21 lines
673 B
XML
21 lines
673 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Guacamole logs all messages to console by default. Servlet containers
|
|
like Tomcat will automattically redirect these messages to a log file,
|
|
catalina.out in the case of Tomcat. Valid levels= error, warn, info,
|
|
debug -->
|
|
<configuration>
|
|
|
|
<!-- Appender for debugging -->
|
|
<appender name="GUAC-DEBUG" class="ch.qos.logback.core.ConsoleAppender">
|
|
<encoder>
|
|
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<!-- Log at DEBUG level -->
|
|
<root level="debug">
|
|
<appender-ref ref="GUAC-DEBUG"/>
|
|
</root>
|
|
|
|
</configuration>
|