-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
56 lines (56 loc) · 2.09 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
####################################################################################################
############################################## LOGGING #############################################
# MCSports allows (very) extended logging.
# For example, if someone fails a command, this can also be logged.
#
# Valid ampersand values for Format are:
# - &sender: the sender of the command.
# - &command: the command used.
# - &args: the arguments given.
# - &extended: the extended reason (example: not enough arguments).
#
# Levels can be: finest (300), finer (400), fine (500), debug (600), config (700), info (800),
# command (801), warning (900), severe (1000) or a number from 1-1000 (higher is more important).
#
Log:
Commands:
Success:
Enabled: true
Format: '&sender Successfully used: /&command &args'
ToFile: false
Failed:
Enabled: false
Format: '&sender Failed (&extended) to use: /&command &args'
ToFile: false
NoPermission:
Enabled: false
Format: '&sender was denied access to command: /&command &args'
ToFile: false
Level: command
FileName: 'Commands.log'
FileLocation: '&serverroot/plugins/MCSports/'
FileLogFormat: '[&day-&month-&year &hour:&minute&second] &msg'
Initialisation:
Enable:
Enabled: true
Level: info
Disable:
Enabled: true
Level: info
Errors:
Config:
Enabled: true
Level: info
ToFile: false
Plugin:
Warning:
Enabled: true
Level: warning
ToFile: false
Severe:
Enabled: true
Level: severe
ToFile: false
####################################################################################################
# Restore defaults option: warning if you change this to true, the default settings will be restored
RestoreToDefaultSettings: false