[WICKET-6518] missing logback.xml is added
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/2e545f66 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/2e545f66 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/2e545f66 Branch: refs/heads/WICKET-6498_deferred_javascript_2 Commit: 2e545f66c1db7448f1962ca519d0b685c8b8ded9 Parents: cfd6a55 Author: Maxim Solodovnik <[email protected]> Authored: Sat Jan 13 15:36:08 2018 +0700 Committer: Maxim Solodovnik <[email protected]> Committed: Sat Jan 13 15:36:08 2018 +0700 ---------------------------------------------------------------------- .../src/main/resources/logback.xml | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/2e545f66/archetypes/quickstart/src/main/resources/archetype-resources/src/main/resources/logback.xml ---------------------------------------------------------------------- diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/src/main/resources/logback.xml b/archetypes/quickstart/src/main/resources/archetype-resources/src/main/resources/logback.xml new file mode 100644 index 0000000..f749c74 --- /dev/null +++ b/archetypes/quickstart/src/main/resources/archetype-resources/src/main/resources/logback.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you 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. + +--> +<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> + <layout class="ch.qos.logback.classic.PatternLayout"> + <pattern>%5p %d{MM-dd HH:mm:ss.SSS } %r %L %c{15} [%.15thread] - %m%n</pattern> + </layout> + </appender> + <root level="WARN"> + <appender-ref ref="CONSOLE" /> + </root> +</configuration>
