[AB-232] splitting logging functionality to separate module

changing user join/leave template to be an embed
This commit is contained in:
Sheldan
2021-04-24 16:03:07 +02:00
parent 9ab95c32bc
commit 73ca42bd66
30 changed files with 117 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<outputDirectory>.</outputDirectory>
<directory>${project.basedir}/src/main/resources</directory>
</fileSet>
</fileSets>
</assembly>

View File

@@ -0,0 +1 @@
The channel in which deleted messages should be logged to. Currently: ${currentTarget}

View File

@@ -0,0 +1 @@
The channel in which edited messages should be logged to. Currently: ${currentTarget}

View File

@@ -0,0 +1 @@
The channel in which guild joins should be logged to. Currently: ${currentTarget}

View File

@@ -0,0 +1 @@
The channel where guild leavers should be logged to. Currently: ${currentTarget}

View File

@@ -0,0 +1 @@
Message from <@member_user_name member=member/> (${member.idLong?c}) removed in ${channel.asMention}

View File

@@ -0,0 +1 @@
Message from <@member_user_name member=member/> (${member.idLong?c}) edited in ${messageChannel.asMention}

View File

@@ -0,0 +1 @@
User ${user} has joined the guild.

View File

@@ -0,0 +1 @@
User ${user} has left the guild.