ColorConsole/src/main/resources/config.yml

85 lines
2.4 KiB
YAML
Raw Normal View History

2016-05-05 14:57:05 +02:00
# ConsoleColor config
# How the messages should be displayed
#
# Variables:
# %thread - Thread name
# %d{HH:mm:ss} - Timestamp
# %msg - log message
# %n - new line
2017-09-23 13:55:42 +02:00
# These variables try to get the origin. This is an expensive operation and may impact performance. Use with caution.
2016-05-05 14:57:05 +02:00
# %class{precision} - Class name
# %method - Method name
# %line - Line number
#
2017-09-23 13:55:42 +02:00
# For more details visit: https://logging.apache.org/log4j/2.x/manual/layouts.html#Patterns
logFormat: '[%d{HH:mm:ss} %level]: %msg%n'
2019-05-02 11:27:55 +02:00
# How should the time be highlighted
# Like below it could also be default which means it's the default font color depending on your terminal settings.
dateStyle: cyan
# Should the log message be highlighted depending on the logging level
colorLoggingLevel: true
2016-05-06 12:08:58 +02:00
# Log Level Colors
2019-05-02 11:27:55 +02:00
Level:
FATAL: red
ERROR: red
WARN: yellow
INFO: green
DEBUG: green
TRACE: blue
# Should the plugin tag [PLUGIN_NAME] be highlighted
colorPluginTag: true
2016-05-06 12:08:58 +02:00
# Plugin Colors
# This can be the default color or "random" it gives each plugin (besides the ones specified below) a different color
# which keeps the same until the server shuts down.
2017-06-01 19:49:30 +02:00
# Black is ignored by default, because it's often hard to read on the console
2019-05-02 11:27:55 +02:00
Plugin:
Default: random
Essentials: green
LagMonitor: red
WorldEdit: red
FastLogin: cyan
WorldGuard: cyan
Vault: magenta
ChangeSkin: yellow
ScoreboardStats: white
mcMMOAction: blue
mcMMOExtras: yellow
ColorConsole: orange
2017-05-21 15:27:26 +02:00
# Available foreground colors | Available background colors
# Black | BG_Black
# Red | BG_Red
# Green | BG_Green
# Yellow | BG_Yellow
# Blue | BG_Blue
# Magenta | BG_Magenta
# Cyan | BG_Cyan
# White | BG_White
# Default |
# Available styling options
# blink | Blinking characters
# bold | Bold
# underline | Underlined characters
# reverse | Reverse video
# dim | Dimmed or faint characters
# italic | italic
# hidden |
# Hides the log message if it contains one or more of the following texts
# The texts are case-sensitive
hide-messages:
- 'ThisIsATest'
- 'SecondTest'
2017-05-25 13:13:31 +02:00
# Removes color formatting if the complete message has color formatting
truncateColor: false