Files
hutool/hutool-log/src/test/resources/tinylog.properties

26 lines
1.3 KiB
Properties
Raw Normal View History

2023-09-21 18:08:54 +08:00
#
2024-08-04 22:21:03 +08:00
# Copyright (c) 2024 looly(loolly@aliyun.com)
2023-09-21 18:08:54 +08:00
# Hutool is licensed under Mulan PSL v2.
# You can use this software according to the terms and conditions of the Mulan PSL v2.
# You may obtain a copy of Mulan PSL v2 at:
# https://license.coscl.org.cn/MulanPSL2
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
#
2019-08-14 10:02:32 +08:00
#-----------------------------------------------------------------------------------------------------------
# == TinyLog \u914d\u7f6e\u6587\u4ef6 ==
# \u914d\u7f6e\u89c1\uff1ahttp://www.tinylog.org/configuration#file
#-----------------------------------------------------------------------------------------------------------
# \u65e5\u5fd7\u5199\u51fa\u65b9\u5f0f\uff1a[console] [file] [jdbc] [logcat] [rollingfile] [sharedfile] [null]
tinylog.writer = console
2020-09-18 15:19:05 +08:00
writer = console
2019-08-14 10:02:32 +08:00
# \u65e5\u5fd7\u5199\u51fa\u7ea7\u522b\uff1aTRACE < DEBUG < INFO < WARNING < ERROR < OFF
tinylog.level = debug
# \u65e5\u5fd7\u6253\u5370\u683c\u5f0f
2020-09-18 15:19:05 +08:00
tinylog.format = [{date:HH:mm:ss}][{level}] {class}:{line} - {message}
2023-09-21 18:08:54 +08:00
writer.format = [{date:HH:mm:ss}][{level}] {class}:{line} - {message}