Skip to content

Commit

Permalink
Resolved incorrect folder mapping for game chat logging (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
sololegends authored Sep 1, 2024
1 parent 41a0502 commit 26b6db5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ This header **should** be used for user authentication.

### Updates

### V1.8
### V1.8.1
- Fixed incorrect folder mapping for game log output.

##### V1.8
- Fix compatibility with the latest client changes. The behaviour of the `rank` field might change with this update.

##### V1.6
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test {
}

group = 'fking.work.chatlogger'
version = '1.8.0'
version = '1.8.1'
sourceCompatibility = '1.8'

tasks.withType(JavaCompile) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fking/work/chatlogger/ChatLoggerPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private void initLoggers() {
friendsChatLogger = setupLogger("FriendsChatLogger", "friends");
clanChatLogger = setupLogger("ClanChatLogger", "clan");
groupChatLogger = setupLogger("GroupChatLogger", "group");
gameChatLogger = setupLogger("GameChatLogger", "group");
gameChatLogger = setupLogger("GameChatLogger", "game");
}

private void startRemoteSubmitter() {
Expand Down

0 comments on commit 26b6db5

Please sign in to comment.