Carmelo Cascone | dc97192 | 2019-04-22 14:45:09 -0700 | [diff] [blame] | 1 | ################################################################################ |
| 2 | # |
| 3 | # Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | # contributor license agreements. See the NOTICE file distributed with |
| 5 | # this work for additional information regarding copyright ownership. |
| 6 | # The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | # (the "License"); you may not use this file except in compliance with |
| 8 | # the License. You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | ################################################################################ |
| 19 | |
| 20 | # |
| 21 | # This configuration file is used to configure the default values for the log:display |
| 22 | # and log:exception-display commands. |
| 23 | # |
| 24 | |
| 25 | # |
| 26 | # The number of log statements to be displayed using log:display. It also defines the number |
| 27 | # of lines searched for exceptions using log:exception-display. You can override this value |
| 28 | # at runtime using -n in log:display. |
| 29 | # |
| 30 | size = "500" |
| 31 | |
| 32 | # |
| 33 | # The pattern used to format the log statement when using log:display. This pattern is according |
| 34 | # to the log4j layout. You can override this parameter at runtime using log:display with -p. |
| 35 | # |
| 36 | color.fatal = "bright red" |
| 37 | color.error = "bright red" |
| 38 | color.warn = "bright yellow" |
| 39 | color.info = "bright green" |
| 40 | color.debug = "cyan" |
| 41 | color.trace = "cyan" |
| 42 | pattern = "\u001b[90m%d{HH:mm:ss.SSS}\u001b[0m %h{%p}{FATAL=${color.fatal}, ERROR=${color.error}, WARN=${color.warn}, INFO=${color.info}, DEBUG=${color.debug}, TRACE=${color.trace}} \u001b[90m[%c{1}]\u001b[0m %m%n" |