1
- # TeamsLogger
2
1
Simple logger for teams provides additional logging. It can be configured to log into files or/and console output.
3
2
4
3
# Installation
@@ -9,26 +8,13 @@ After plugin will be loaded, you can change configuration file.
9
8
Then restart plugin using command in server console ` oxide.reload TeamsLogger `
10
9
11
10
# Configuration
12
- You can find in file ` \oxide\config\TeamsLogger.json `
13
11
``` JSON
14
12
{
15
13
"Print logs to console" : true ,
16
14
"Print logs to file" : true
17
15
}
18
16
```
19
- # Log file example
20
- Path to logs ` \oxide\logs\TeamsLogger\teamslogger_common-####-##-##.txt `
21
- ```
22
- 17:36:22 Created 96 | Player: 'xan' (76561198051734570) created new team
23
- 17:36:23 Leave 96 | Player: 'xan' (76561198051734570, is leader: True)
24
- 17:36:23 Disband 96 | Team leader: 'xan' (76561198051734570)
25
- 17:36:25 Created 97 | Player: 'xan' (76561198051734570) created new team
26
- 17:36:26 Leave 97 | Player: 'xan' (76561198051734570, is leader: True)
27
- 17:36:26 Disband 97 | Team leader: 'xan' (76561198051734570)
28
- ```
29
-
30
- # Localization messages
31
- You can specify messages with formatting in file ` \oxide\lang\##\TeamsLogger.json `
17
+ # Localization
32
18
``` JSON
33
19
{
34
20
"OnTeamCreated" : " Created {0} | Player: '{1}' ({2}) created new team" ,
@@ -41,4 +27,14 @@ You can specify messages with formatting in file `\oxide\lang\##\TeamsLogger.jso
41
27
"OnTeamAcceptInvite" : " Accept {0} | Player: '{1}' ({2}) accepted invite" ,
42
28
"CurrentTeam" : " History {0} | Previously created team with members: {1}"
43
29
}
44
- ```
30
+ ```
31
+ # Log file example
32
+ Path to logs ` \oxide\logs\TeamsLogger\teamslogger_common-####-##-##.txt `
33
+ ```
34
+ 17:36:22 Created 96 | Player: 'xan' (76561198051734570) created new team
35
+ 17:36:23 Leave 96 | Player: 'xan' (76561198051734570, is leader: True)
36
+ 17:36:23 Disband 96 | Team leader: 'xan' (76561198051734570)
37
+ 17:36:25 Created 97 | Player: 'xan' (76561198051734570) created new team
38
+ 17:36:26 Leave 97 | Player: 'xan' (76561198051734570, is leader: True)
39
+ 17:36:26 Disband 97 | Team leader: 'xan' (76561198051734570)
40
+ ```
0 commit comments