12345678910111213141516171819202122232425262728293031323334353637 |
- ################################################################################
- #
- # 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.
- #
- ################################################################################
- #
- # This configuration file is used to configure the default values for the log:display
- # and log:exception-display commands.
- #
- #
- # The number of log statements to be displayed using log:display. It also defines the number
- # of lines searched for exceptions using log:exception-display. You can override this value
- # at runtime using -n in log:display.
- #
- size = 500
- #
- # The pattern used to format the log statement when using log:display. This pattern is according
- # to the log4j layout. You can override this parameter at runtime using log:display with -p.
- #
- pattern = %d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
|